/moca

Primary LanguagePython

Local setup

This should take care of building and starting everything

docker-compose up

To recreate the docker images used from scratch:

docker-compose rm
docker-compose build --no-cache

Migrations

In order to create migration scripts

docker exec -it moca_service makemigrations moca

To run migrations:

docker exec -it moca_service migrate