A social marketplace for services in your neighbourhood. Made during the hackathon CodeTheCity 4 in Edinbourgh, Scotland.
- Node.js/Express as a RESTful API
- MongoDB as the database
- AngularJS for the frontend
- Material Angular as CSS framework
- Socket.io for real-time communications
- JWT for authentication
##Running the frontend
- Go into the
/frontend
folder, using your favorite command line tool. - In your command line, execute
bower install
andnpm install
to install all the necessary dependencies. - In your command line, execute
grunt serve
to start the frontend - Go to http://localhost:9000/ to access the frontend
##Running the backend
- Install Node.js and the nodemon library (
npm install -g nodemon
) - Run MongoDB and change the values in
config/settings.js
according to your database settings. - In your command line, execute
npm install
to install all the necessary dependencies. - In your command line, execute
nodemon app.js
to run application - Go to [http://localhost:3000/api/{whatever api endpoint}](http://localhost:3000/api/{whatever api endpoint}) to access the backend