A Django (Micro)Service wizard for the Buildly Core. This will help you to setup your project from scratch.
The Django version installed is specified in requirements/base.txt
. The
project will be created for Python version 3 (see service_builder/templates/docker/Dockerfile
for more details).
- docker-compose
Just run the command:
docker-compose run --rm django_service_wizard -u $(id -u):$(id -g) -v "$(pwd)":/code
Build the docker image:
docker-compose build
Run the tests:
docker-compose run --entrypoint 'python -m unittest discover' --rm django_service_wizard