-
Notifications
You must be signed in to change notification settings - Fork 0
3 INSTALLATION, RUN
Sanket Saurav edited this page Dec 11, 2018
·
5 revisions
- Clone
https://github.com/karantyagi/movie-buddies-node-server - Go to the cloned repository and run
npm install - Connect to mongodb sever running locally. (
mongodb://127.0.0.1:27017) - Run
node server.js
- Clone
https://github.com/karantyagi/cs5200_fall2018_HKS - Go to the cloned repository and run
npm install - Run
ng serve --open
In mongo shell,
- Run
use movie-buddies db.createCollection('User')db.User.insert({username:'admin',password:'admin',role:'Admin'})db.User.insert({username:'alice',password:'alice',role:'Guest'})db.User.insert({username:'bob',password:'bob',role:'Host'})db.User.insert({username:'charlie',password:'charlie',role:'Host', premiumRequestStatus: 'Verified'})