|
|
@ -85,18 +85,19 @@ DATABASES = { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if not DEBUG: |
|
|
|
DATABASES['default']['USER'] = 'watershed' |
|
|
|
|
|
|
|
|
|
|
|
# Internationalization |
|
|
|
# https://docs.djangoproject.com/en/1.8/topics/i18n/ |
|
|
|
LANGUAGE_CODE = 'en-us' |
|
|
|
TIME_ZONE = 'UTC' |
|
|
|
TIME_ZONE = 'America/New York' |
|
|
|
USE_I18N = True |
|
|
|
USE_L10N = True |
|
|
|
USE_TZ = True |
|
|
|
|
|
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images) |
|
|
|
# https://docs.djangoproject.com/en/1.8/howto/static-files/ |
|
|
|
STATICFILES_DIRS = ( |
|
|
|
os.path.join(BASE_DIR, 'frontend'), |
|
|
|
) |
|
|
|