With docker support.
cp .env.example .env pip3 install virtualenv && \ virtualenv env && \ source env/bin/activate# alias py3="python3" py3 manage.py runserver 3000 # http://localhost:3000alias compose='docker-compose -f local.yml' compose build compose up # http://localhost:3000 py3 manage.py shell -i ipython py3 manage.py show_urlsView the api collection here.
Admin creds are set in ./compose/local/django/start
export DJANGO_SUPERUSER_PASSWORD=secret py3 manage.py createsuperuser \ --username admin_user \ --email admin@django-app.com \ --no-inputpy3 manage.py collectstaticMail environment credentials are at .env.
The mailhog docker image runs at http://localhost:8025.
See your Python code do web browsing on your screen with GUI.
See python react boilerplate app.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
