Docker, docker-compose.yml and Makefile
For local development build and start the dev server:
make app-init
The above command will pull the pre build image from public docker registry and start a django container based on that. Alternatively for a local build refer to the Makefile command
make local-build
The rest of the Makefile commands are the same.
Application code: rivm/rivm/*
To check out the auto generated docs visit: http://localhost:8001/
Application local endpoints:
Optionally after testing locally tear down the application containers and images by
make tear-down
Run commands inside the docker container:
make shell
To run tests
make run-tests