fix(backend): added STATIC_ROOT to settings.py

This commit is contained in:
Rushil Umaretiya 2021-01-30 23:56:34 -05:00
parent 56fb861943
commit 2da01f8737
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 2 additions and 0 deletions

1
backend/.gitignore vendored
View File

@ -151,3 +151,4 @@ dmypy.json
.vscode/* .vscode/*
*.code-workspace *.code-workspace
staticfiles/

View File

@ -155,6 +155,7 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images) # Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.1/howto/static-files/ # https://docs.djangoproject.com/en/3.1/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
MEDIA_ROOT = os.path.join(BASE_DIR, 'media') MEDIA_ROOT = os.path.join(BASE_DIR, 'media')