From 86c5e3de1c320b0b9a1fa78232b1cea81b4bcfb9 Mon Sep 17 00:00:00 2001 From: David Greenwood Date: Wed, 29 Jan 2025 18:23:42 +0000 Subject: [PATCH] django debug (#105) --- .github/workflows/deploy-production-image.yml | 2 +- .github/workflows/deploy-staging-image.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-production-image.yml b/.github/workflows/deploy-production-image.yml index ec80e18..e6da2ee 100644 --- a/.github/workflows/deploy-production-image.yml +++ b/.github/workflows/deploy-production-image.yml @@ -41,7 +41,7 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: | - DJANGO_DEBUG=FALSE + DJANGO_DEBUG=False DJANGO_SECRET=${{ secrets.DJANGO_SECRET }} POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }} ARANGODB_PASSWORD=${{ secrets.ARANGODB_PASSWORD }} diff --git a/.github/workflows/deploy-staging-image.yml b/.github/workflows/deploy-staging-image.yml index 19889ab..3bb292c 100644 --- a/.github/workflows/deploy-staging-image.yml +++ b/.github/workflows/deploy-staging-image.yml @@ -41,7 +41,7 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: | - DJANGO_DEBUG=FALSE + DJANGO_DEBUG=True DJANGO_SECRET=${{ secrets.DJANGO_SECRET }} POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }} ARANGODB_PASSWORD=${{ secrets.ARANGODB_PASSWORD }}