This is the simplest configuration for developers to start with.
docker-compose run --rm django ./manage.py migrate
docker-compose run --rm django ./manage.py createsuperuser
and follow the prompts to create your own userdocker-compose up
Ctrl+C
Occasionally, new package dependencies or schema changes will necessitate maintenance. To non-destructively update your development stack at any time:
docker-compose pull
docker-compose build --pull --no-cache
docker-compose run --rm django ./manage.py migrate
This configuration still uses Docker to run attached services in the background, but allows developers to run Python code on their native system.
docker-compose -f ./docker-compose.yml up -d
psycopg2
build prerequisitespip install -e .[dev]
source ./dev/export-env.sh
./manage.py migrate
./manage.py createsuperuser
and follow the prompts to create your own userdocker-compose -f ./docker-compose.yml up -d
is still activesource ./dev/export-env.sh
./manage.py runserver
source ./dev/export-env.sh
celery --app dkc.celery worker --loglevel INFO --without-heartbeat
docker-compose stop
Attached services may be exposed to the host system via alternative ports. Developers who work on multiple software projects concurrently may find this helpful to avoid port conflicts.
To do so, before running any docker-compose
commands, set any of the environment variables:
DOCKER_POSTGRES_PORT
DOCKER_RABBITMQ_PORT
DOCKER_MINIO_PORT
The Django server must be informed about the changes:
DJANGO_MINIO_STORAGE_MEDIA_URL
, using the port from DOCKER_MINIO_PORT
.DJANGO_DATABASE_URL
, using the port from DOCKER_POSTGRES_PORT
DJANGO_CELERY_BROKER_URL
, using the port from DOCKER_RABBITMQ_PORT
DJANGO_MINIO_STORAGE_ENDPOINT
, using the port from DOCKER_MINIO_PORT
Since most of Django's environment variables contain additional content, use the values from
the appropriate dev/.env.docker-compose*
file as a baseline for overrides.
tox is used to execute all tests.
tox is installed automatically with the dev
package extra.
When running the "Develop with Docker" configuration, all tox commands must be run as
docker-compose run --rm django tox
; extra arguments may also be appended to this form.
Run tox
to launch the full test suite.
Individual test environments may be selectively run. This also allows additional options to be be added. Useful sub-commands include:
tox -e lint
: Run only the style checkstox -e type
: Run only the type checkstox -e test
: Run only the pytest-driven testsTo automatically reformat all code to comply with
some (but not all) of the style checks, run tox -e format
.
The test environment has pytest-cov
installed, so pass any options you want
for coverage reporting. To generate an HTML coverage report, run:
tox -e test -- --cov-report=html --cov=dkc