Run npm install
or yarn install
pip install -r requirements.txt
- To connect to Mongodb, make sure to create an
.env
file in backend folder that includes MONGO_URI="mongodb+srv://<db_username>:<db_password>@cluster0.i8at4.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0" JWT_SECERT=
- Open a terminal in backend directory
python app.py
- Open a terminal in the frontend directory
npm start
- You should be able to see a running app at http://localhost:3000/
- After making any modifications in the frontend, run the following command in frontend folder:
npm run lint # Check for linting issues
npm run lint:fix # Fix auto-fixable linting issues
npm run format # Format with Prettier
- After making any modifications in the backend, run the following command in backend folder:
black . # Check for linting issues