|
|
@ -133,7 +133,7 @@ THOUSAND_SEPARATOR = '.' |
|
|
# https://docs.djangoproject.com/en/5.1/howto/static-files/ |
|
|
# https://docs.djangoproject.com/en/5.1/howto/static-files/ |
|
|
|
|
|
|
|
|
STATIC_URL = '/static/' |
|
|
STATIC_URL = '/static/' |
|
|
STATIC_ROOT = BASE_DIR / "staticfiles" |
|
|
|
|
|
|
|
|
STATIC_ROOT = BASE_DIR / "wsgi/static" |
|
|
|
|
|
|
|
|
# Default primary key field type |
|
|
# Default primary key field type |
|
|
# https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field |
|
|
# https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field |
|
|
@ -146,7 +146,7 @@ LOGOUT_REDIRECT_URL = 'principal' |
|
|
|
|
|
|
|
|
AUTH_USER_MODEL = "reymotausers.ReyMotaUser" |
|
|
AUTH_USER_MODEL = "reymotausers.ReyMotaUser" |
|
|
|
|
|
|
|
|
MEDIA_ROOT = BASE_DIR / "mediafiles" |
|
|
|
|
|
|
|
|
MEDIA_ROOT = BASE_DIR / "media" |
|
|
MEDIA_URL = '/media/' |
|
|
MEDIA_URL = '/media/' |
|
|
|
|
|
|
|
|
CSRF_TRUSTED_ORIGINS = os.environ.get("CSRF_TRUSTED_ORIGINS").split(" ") |
|
|
CSRF_TRUSTED_ORIGINS = os.environ.get("CSRF_TRUSTED_ORIGINS").split(" ") |
|
|
|