- Have Node.js installed https://nodejs.org/en/
- Have Angular installed (after installing Node.js run
npm install -g @angular/cli
from your command line)
- First create and navigate into a directory named learning-assistant-management-system on your filesystem
It doesn't matter where you place this directory
- Initialize a local Git repository in the new directory using
git init
- Clone the remote repository located at https://github.com/sdd-lams/learning-assistant-management-system
- Update your local repository from the cloned remote
- Navigate into the /frontend directory and execute
npm install
- After the npm install completes run
ng build --build-optimizer false
from within /frontend
For development launch the frontend using
ng serve
(serves the frontend on locahost:4200)
- Navigate to the /backend directory and execute
npm install
The backend and frontend directories are located at the root level of /learning-assistant-management-system
- After the npm install completes, run
npm start
from within /backend - The application will now be running on localhost:3000, or localhost:4200 if you used
ng serve