added whitenoise support for staticfiles

This commit is contained in:
Rushil Umaretiya 2020-10-20 04:40:53 -04:00
parent 55712e8cbf
commit 0576e8ca53
3 changed files with 7 additions and 3 deletions

4
.gitignore vendored
View File

@ -1,10 +1,11 @@
led / optimized / DLL files
#led / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
secrets.py
static_files
.idea/
.vscode/
# C extensions
*.so
@ -64,6 +65,7 @@ local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache

View File

@ -45,6 +45,7 @@ INSTALLED_APPS = [
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'whitenoise.middleware.WhiteNoiseMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
@ -124,5 +125,4 @@ USE_TZ = True
STATIC_URL = '/static/'
import os
STATIC_ROOT = os.path.join(BASE_DIR, 'static_files')
STATICFILES_DIRS = [BASE_DIR / "static"]
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

View File

@ -10,6 +10,7 @@ Django==3.1.2
django-extensions==3.0.9
django-secrets==1.0.2
future==0.18.2
gunicorn==20.0.4
idna==2.10
notion==0.0.25
python-slugify==4.0.1
@ -21,3 +22,4 @@ sqlparse==0.4.1
text-unidecode==1.3
tzlocal==2.1
urllib3==1.25.11
whitenoise==5.2.0