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 ca6c26b commit 82dc0d7Copy full SHA for 82dc0d7
my_site/settings.py
@@ -19,6 +19,8 @@
19
# Quick-start development settings - unsuitable for production
20
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
21
22
+# SECURITY WARNING: keep the secret key used in production secret!
23
+SECRET_KEY = 'y4f$wdh5wr)=%yl_fxdeg2w2u^pk(47n^jdv&o$41a1ixpk)5_'
24
25
# SECURITY WARNING: don't run with debug turned on in production!
26
DEBUG = False
@@ -117,6 +119,8 @@
117
119
# Static files (CSS, JavaScript, Images)
118
120
# https://docs.djangoproject.com/en/3.0/howto/static-files/
121
122
+STATIC_ROOT = os.path.join(BASE_DIR, '_staticfiles_')
123
+
124
STATIC_URL = '/static/'
125
STACTICFILES_DIRS =[
126
os.path.join(BASE_DIR,'static')
0 commit comments