Created
February 25, 2017 12:43
-
-
Save hseritt/a41fcfe9283720a1699792a0f52d072a to your computer and use it in GitHub Desktop.
Handling static files and dirs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
# Static files (CSS, JavaScript, Images) | |
# https://docs.djangoproject.com/en/1.10/howto/static-files/ | |
STATICFILES_DIRS = ( | |
os.path.join(BASE_DIR, 'static'), | |
) | |
STATIC_URL = '/static/' | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment