It's an online food ordering system made using MongoDB, Express, Angular and Bootstrap.
To run this app on your machine
- Install node modules for backend (express) as well as frontend (Angular).
- Rename nodemon.sample.json to nodemon.json.
- Enter port, mongo uri and secret in nodemon.json.
{ "env": { "PORT": "PORT", "MONGO_URI": "MONGO_URI", "SECRET": "SECRET" } }
- To start the express server execute the following command.
npm run dev
- To serve angular execute the following command in client directory.
ng serve -o