Skip to content

Instantly share code, notes, and snippets.

@hseritt
Created February 25, 2017 12:43
Show Gist options
  • Save hseritt/a41fcfe9283720a1699792a0f52d072a to your computer and use it in GitHub Desktop.
Save hseritt/a41fcfe9283720a1699792a0f52d072a to your computer and use it in GitHub Desktop.
Handling static files and dirs
...
# 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