Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.23 KB

INSTALLATION.md

File metadata and controls

27 lines (17 loc) · 1.23 KB

Installation Guide

Prerequisites

  1. Have Node.js installed https://nodejs.org/en/
  2. Have Angular installed (after installing Node.js run npm install -g @angular/cli from your command line)

Instructions

  1. First create and navigate into a directory named learning-assistant-management-system on your filesystem

It doesn't matter where you place this directory

  1. Initialize a local Git repository in the new directory using git init
  2. Clone the remote repository located at https://github.com/sdd-lams/learning-assistant-management-system
  3. Update your local repository from the cloned remote
  4. Navigate into the /frontend directory and execute npm install
  5. 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)

  1. 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

  1. After the npm install completes, run npm start from within /backend
  2. The application will now be running on localhost:3000, or localhost:4200 if you used ng serve