-
Notifications
You must be signed in to change notification settings - Fork 5
Installation Guide
Michail Chatzianastasis edited this page Aug 24, 2019
·
2 revisions
You have to install the following:
- Node js for the backend side
- Angular for the frontend side
- MongoDB for database
1. Git clone the repository
git clone https://github.com/eellak/gsoc2019-tms.git
2. Install the node-js dependencies
npm install --save
3. Configure the mongodb
In the app.js configure your mongodb credentials.
4. Start node-js server
cd backend
npm start
5. Install angular dependencies
cd frontend
npm install --save
6. Start angular app
cd frontend
ng serve