For the Backend-end side, we use JavaScript and Node JS and MongoDB. This project also support NodeJS version. See Development Set Up
- David Wosk - Full Stack
- Gideon Chia - Full Stack
- Jeff Chiu - Full Stack
$ yarn install
$ export MONGODB_NAME=<db name>
$ export MONGODB_URL=[username:password@]host1[:port1][/[database][?options]]
$ export GOOGLE_CLIENT_ID=<google client id>
$ npm start
Server listening on port 3000!
To view API documentation, visit localhost:3000/docs
- Run a local instance of mongod:
$ mongod
- Seed the local database using the provided seed files:
$ mongoimport -d test -c users ./test/seed/users_seed.json
$ mongoimport -d test -c arrangement ./test/seed/arrangement_seed.json
- Run the tests:
$ npm test