Docker, docker-compose.yml and Makefile
For local development build and start the dev server:
make app-initThe 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-buildThe 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-downRun commands inside the docker container:
make shellTo run tests
make run-tests