This is a Docker setup for deploying your web application based on Django. It also contains tox file for testing your app.
You need to install Docker and Docker-Compose.
make sure your django app is configures for production use using this link.
docker-compose build
or make build
.
docker-compose run --rm djangoapp /bin/bash -c 'cd hello; ./manage.py makemigrations'
.
docker-compose run --rm djangoapp /bin/bash -c 'cd hello; ./manage.py migrate'
.
docker-compose up
or make run
.
make checksafety
make checkstyle
make test
make coverage
Software licensed under the ISC license.