From def0927e1ce6d3bbc2bae764fdb54467d2cab48f Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Wed, 10 Feb 2021 08:57:58 +0300 Subject: [PATCH] Closes #1384 (#1454) --- .../server/settings/environments/development.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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', )