Pickr is a simple web application to help large groups reach decisions on where to eat, where to study, or who the best actor of all time is. Create custom rooms, invite your friends, and start swiping!
To clone and run this application, you will need Git, Node.js, and MongoDB installed on your computer. To begin, clone the repository through:
# Clone this repository
$ git clone https://github.com/cs130-w21/21.git
# Go into the 21 folder
$ cd 21
To install dependencies and run the backend:
# Go into the backend folder
$ cd backend
# Install dependencies
$ npm install
# Run the backend
$ npm start
To install dependencies and run the frontend:
# Go into the frontend folder
$ cd ../frontend
# Install dependencies
$ npm install
# Run the frontend
$ npm start
Pushing a commit to master and creating a new pull request will trigger the build. To trigger the build, install dependencies in the above steps and then:
# Go into the backend folder
$ cd ../backend
$ npm test