Launching the backend of this project requires MongoDB Atlas credentials and an authentication key. Please contact the administrators of this project for obtaining access.
- Clone the repository with
git clone
. - To start the backend local development instance:
- Change directory to
backend
. - Rename
env.example
toenv
and update the file with your Atlas username/password. - Create a file
credentials.json
and fill it with the credential JSON information. - Execute command
npm install
. - Execute command
npm run dev
.
- Change directory to
- To start the frontend development local development instance:
- Change directory to the top level of the project (
cd ..
if inbackend
) - Execute command
npm install
. - Execute command
npm start
.
- Change directory to the top level of the project (
Note: If you are changing the ports on which you're launching these development instances then change the commands below to your chosen port numbers.
For the backend development instance, execute command npx kill-port 5000
.
For the frontend development instance, execute command npx kill-port 3000
.