Basically django template for project creation that don't need django to start a project.
- open terminal
- copy
curl https://be.skeletons.djangostars.com/startproject | bash
- paste
- hit enter
- answer the questions
Project created with help of this skeleton has overwritten startapp
command that will create application with given name. Template will be choisen automatically based on your settings.INSTALLED_APPS
.
- Django project formatted according to Django Stars Code Style requirements
- django-environ to keep all configuration in environment
- psycopg2 as default database driver
- django-extensions/ipython/ipdb for debug purposes
- pytest with pylava for testing
- redefined startapp command to create app according to Django Stars Code Style requirements
add DRF to base template
add Celery to base template