File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
excelplay_kryptos/excelplay_kryptos Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -107,4 +107,6 @@ db.sqlite3
107
107
108
108
# Static files
109
109
excelplay_kryptos /static
110
- excelplay_kryptos /media
110
+ excelplay_kryptos /media
111
+
112
+ secret.py
Original file line number Diff line number Diff line change 15
15
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16
16
BASE_DIR = os .path .dirname (os .path .dirname (os .path .abspath (__file__ )))
17
17
18
+ from secret import SECRET
18
19
19
20
# False if not in os.environ
20
21
#DEBUG = env('DEBUG')
21
22
DEBUG = False
22
23
23
24
# Raises django's ImproperlyConfigured exception if SECRET_KEY not in os.environ
24
25
#SECRET_KEY = env('SECRET_KEY')
25
- SECRET_KEY = os .environ .get ('secret_key' )
26
+
27
+ SECRET_KEY = SECRET
28
+
26
29
ALLOWED_HOSTS = ['35.200.222.240' , 'play-demo.excelmec.org' ,'play.excelmec.org' ]
27
30
28
31
You can’t perform that action at this time.
0 commit comments