change 'assets' to 'static'

This commit is contained in:
lpm0073 2022-09-14 20:29:42 -05:00
parent 5058982c30
commit 68c765f18e

View File

@ -94,3 +94,16 @@ for logger in LOGGING["loggers"].values():
logger["handlers"].remove("local")
{{ patch("credentials-settings-common") }}
# STATIC FILE CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-root
# The absolute path to the directory where collectstatic will collect static files for deployment.
# Example: "/var/www/example.com/static/"
# Example: "/openedx/credentials/credentials/static/"
STATIC_ROOT = root("static")
# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url
STATIC_URL = "/static/"
# See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:setting-STATICFILES_DIRS
STATICFILES_DIRS = (root("static"),)