We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031148d commit 7753acaCopy full SHA for 7753aca
.gitignore
@@ -1,7 +1,7 @@
1
+# NOTE: see also app/.gitignore
2
__pycache__/
3
.idea/
4
.DS_Store
-secrets.txt
5
6
# directories w/files from old website
7
/public/
app/alloydflanagan/settings/production.py
@@ -6,3 +6,5 @@
from .local import *
except ImportError:
8
pass
9
+
10
+SECRET_KEY = os.environ.get('DJANGO_SECRET_KEY')
docker-compose.yml
@@ -19,6 +19,7 @@ services:
19
- ./app/yarn.lock:/app/yarn.lock:delegated
20
environment:
21
DATABASE_URL: postgres://wagtail:development@postgres:5432/alloydflanagan
22
+ DJANGO_SETTINGS_MODULE: alloydflanagan.settings.dev
23
ports:
24
- "8080:8080"
25
0 commit comments