- 🎉 Try our app here
- 📝 Check out our project report
- 👀 Follow our progress
To set up the environment for local development, do the following:
- Ensure that the Docker desktop application is running
- With the cloned repo as the current working directory, enter the following commands in the terminal:
# Initialize microservices
docker-compose up --build -d
# Serve frontend
cd frontend
npm i
npm run start
- To access the app, open a browser and navigate to
localhost:3000
- To stop serving the frontend, press the keys:
CTRL
+C
- To shut down the microservices, enter the following commands in the terminal:
cd ..
docker-compose down