- Download Node.js here if you do not already have it on your machine
- Clone repository locally and enter the following into your terminal:
cd frontend
npm install
npm run dev - Go to the address specified in output to view website locally
- Download Python here if you do not already have it on your machine
- Clone repository locally and enter the following into your terminal:
cd backend
On Mac/Linux:
source venv/bin/activate
On Windows:
venv\Scripts\activate
pip install -r requirements.txt
- To run the flask app to view endpoint responses in your browser run
flask runand visit the address specified in the output. From there you can append your endpoint's route to the address to view its response body
To contribute a feature, please make a new branch(example name: feature/fiber-endpoint)and checkout the branch locally before making changes. Then once you are done you can make a pullrequest with that branch, link it to a specific Github Issue, and the team lead will review, merge and delete that branch