|
|
@ -128,9 +128,15 @@ USE_TZ = True |
|
|
|
SITE_ROOT = "http://localhost:8000" |
|
|
|
PING_ENDPOINT = SITE_ROOT + "/ping/" |
|
|
|
PING_EMAIL_DOMAIN = HOST |
|
|
|
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'staticfiles') |
|
|
|
STATIC_URL = '/static/' |
|
|
|
STATICFILES_DIRS = [os.path.join(BASE_DIR, "static")] |
|
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static-collected') |
|
|
|
STATICFILES_DIRS = ( |
|
|
|
os.path.join(PROJECT_ROOT, 'static'), |
|
|
|
) |
|
|
|
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage' |
|
|
|
# STATIC_URL = '/static/' |
|
|
|
# STATICFILES_DIRS = [os.path.join(BASE_DIR, "static")] |
|
|
|
# STATIC_ROOT = os.path.join(BASE_DIR, 'static-collected') |
|
|
|
STATICFILES_FINDERS = ( |
|
|
|
'django.contrib.staticfiles.finders.FileSystemFinder', |
|
|
|
'django.contrib.staticfiles.finders.AppDirectoriesFinder', |
|
|
|