- Ensure you have Python3 (for backend) and Node.js >= 18.0 (for frontend) installed.
- Install Docker / Docker Compose
- Make sure docker is running by opening docker desktop app.
- Clone our repo
git clone https://github.com/dcsil/tailor-app.git
cd tailor-app
- Add
.env
file by copying over.env.example
file and replacing the fake credentials with your own. - Run
script/bootstrap
- Go to http://127.0.0.1:5173
docker compose run --rm backend pytest tests
docker compose run --rm frontend sh -c "npm install --save-dev jest && npm test"
docker compose logs backend -f
docker compose logs frontend -f