diff --git a/{{cookiecutter.project_name}}/server/settings/environments/development.py b/{{cookiecutter.project_name}}/server/settings/environments/development.py index bca38d64..7aad66ac 100644 --- a/{{cookiecutter.project_name}}/server/settings/environments/development.py +++ b/{{cookiecutter.project_name}}/server/settings/environments/development.py @@ -30,11 +30,23 @@ # Installed apps for development only: INSTALLED_APPS += ( + # Better debug: 'debug_toolbar', 'nplusone.ext.django', + + # Linting migrations: 'django_migration_linter', + + # django-test-migrations: 'django_test_migrations.contrib.django_checks.AutoNames', + # This check might be useful in production as well, + # so it might be a good idea to move `django-test-migrations` + # to prod dependencies and use this check in the main `settings.py`. + # This will check that your database is configured properly, + # when you run `python manage.py check` before deploy. 'django_test_migrations.contrib.django_checks.DatabaseConfiguration', + + # django-extra-checks: 'extra_checks', )