File tree 6 files changed +16
-46
lines changed
6 files changed +16
-46
lines changed Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change 20
20
# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
21
21
22
22
# SECURITY WARNING: keep the secret key used in production secret!
23
- SECRET_KEY = 'x%*=30tvu()@!)i-#$n65ynue&&l)78z4b0apodl$iqvzpt9dj '
23
+ SECRET_KEY = '(nvt1yya(pzyv=^s!94jsk@7(ebaly2&n84@sh64(c+9v!p+_f '
24
24
25
25
# SECURITY WARNING: don't run with debug turned on in production!
26
26
DEBUG = True
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python
2
+ import os
3
+ import sys
4
+
5
+ if __name__ == "__main__" :
6
+ os .environ .setdefault ("DJANGO_SETTINGS_MODULE" , "fosstack.settings" )
7
+ try :
8
+ from django .core .management import execute_from_command_line
9
+ except ImportError as exc :
10
+ raise ImportError (
11
+ "Couldn't import Django. Are you sure it's installed and "
12
+ "available on your PYTHONPATH environment variable? Did you "
13
+ "forget to activate a virtual environment?"
14
+ ) from exc
15
+ execute_from_command_line (sys .argv )
You can’t perform that action at this time.
0 commit comments