Works with PostgreSQL.
$ django-admin startproject project-name --template ./django-project-template/
$ pip install -r requirements/development.txt
$ docker-compose up -d postgres
$ vi config/settings/local.py
Put your local settings in the local.py
, you can override settings
consider your local environment. Start with lines below:
from .base import *
$ ./manage.py migrate
The project will use E-Mail address as username.
$ ./manage.py createsuperuser