1
0
mirror of https://github.com/creyD/asiimov.git synced 2026-06-12 00:52:23 +02:00

Added static directory

This commit is contained in:
2020-01-14 00:38:44 +01:00
parent 38bd6eefcb
commit 05c3fed18c

View File

@@ -103,18 +103,19 @@ AUTH_PASSWORD_VALIDATORS = [
# https://docs.djangoproject.com/en/3.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.0/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'common/static_files')
]
# Steam API variables
STEAM_API_KEY = os.environ['STEAM_API_KEY']