docker-compose -f docker-compose-dev.yml up -d --build
docker-compose up -d --build
- Install python and ts requirements (also creates venv, runs npm init and so on)
make requirements
- Create db containers and run init scripts
make db
- Reinstall python and ts requirements
make reinstall
- Start existing db containers
make start-db
- Whole setup (requirements + db)
make setup
Run api, worker and frontend services using live server
make app
- Stop database containers
make stop-db
- Stop and remove db containers and volumes
make clean-db
- Remove db containers and volumes and also all venvs and node modules
make clean