- Respect, Understanding, and Accountability
- Open Collaboration
- Work should be completed punctually
- Conflicts should be brought up to all developers as soon as possible.
- All developers will collaboratively decide on the best outcome.
- Work should be done locally and not on the remote repo
- All assigned work should be contributed by the end of the agreed time
Times TBD
- 10/13
- 10/20
- 11/1
- 11//3
- 11/8
- 11/15
- 11/17
- 11/22
GitHub is our primary resource for version control, project planning, issue tracking, and project documentation.
- Install VSCode
- Clone this repository on your local machine
- Fork this repository
- Clone your fork of this repository to your local machine
- Navigate into the project directory
- Navigate into the
back-end
directory - Run
npm install
to install all dependencies listed in thepackage.json
file - Make sure to create an .env file and copy the contents of .env.example into it
FRONT_END_DOMAIN=http://localhost:3000
- Run
npm start
to launch the Express.js server
- Navigate into the
front-end
directory - Run
npm install
to install all dependencies listed in thepackage.json
file, Make sure the .env file specifies the right domain:
REACT_APP_BACKEND=http://localhost:3001
- Run
npm start
to launch the React.js server