From 6802cdf10113966f7ee7368c480731315b52b422 Mon Sep 17 00:00:00 2001 From: Janek Mangold Date: Tue, 14 Jul 2026 12:05:55 +0200 Subject: [PATCH] feat: add DJANGO_SECRET_KEY variable for deploy check in GitLab CI configuration --- .../.gitlab/ci/test.gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/django/{{ cookiecutter.project_slug }}/.gitlab/ci/test.gitlab-ci.yml b/django/{{ cookiecutter.project_slug }}/.gitlab/ci/test.gitlab-ci.yml index f02d7c0..722f146 100644 --- a/django/{{ cookiecutter.project_slug }}/.gitlab/ci/test.gitlab-ci.yml +++ b/django/{{ cookiecutter.project_slug }}/.gitlab/ci/test.gitlab-ci.yml @@ -22,6 +22,7 @@ deploy-check: - .size:medium variables: DJANGO_SETTINGS_MODULE: "{{ cookiecutter.project_slug }}.settings.staging" + DJANGO_SECRET_KEY: "not-very-secret-but-it's-fine-for-this-very-cool-deploy-check" script: - uv run manage.py check --deploy --fail-level DEBUG --force-color rules: