We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2b552 commit b5d78d8Copy full SHA for b5d78d8
.github/workflows/build-and-deploy.yaml
@@ -8,7 +8,8 @@ jobs:
8
if: >
9
github.ref == 'refs/heads/main' ||
10
github.ref == 'refs/heads/staging' ||
11
- github.ref == 'refs/heads/development'
+ github.ref == 'refs/heads/development' ||
12
+ github.ref == 'refs/heads/test-debug-env-var'
13
strategy:
14
matrix:
15
# Specify the docker-compose services to build images from
src/signal_documentation/settings.py
@@ -48,8 +48,8 @@
48
49
50
# SECURITY WARNING: don't run with debug turned on in production!
51
-# DEBUG = bool(strtobool(os.getenv('DEBUG', 'True')))
52
-DEBUG = True
+DEBUG = bool(strtobool(os.getenv('DEBUG', 'True')))
+#DEBUG = True
53
54
55
# SECURITY WARNING: keep the secret key used in production secret!
0 commit comments