Skip to content

sallycaoyu/SpotiGate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpotiGate

See demo here! https://youtu.be/82oyw6A1VwY

How to set up

  1. Download Node.js v16.17.0.
  2. Run this command below in your terminal to download the Angular CLI:
npm install -g @angular/cli
  1. After navigating to the client folder, install the dependencies:
cd client
npm install
  1. Install dependencies for the webserver folder:
cd webserver
npm install
  1. Under the webserver folder, run this command to launch the server at localhost:8888
npm start
  1. Under the client folder, run this command to launch the client at localhost:4200
ng serve --open
  1. The browser should open automatically. You're all set!