Make paths in settings.py "relative"
This commit is contained in:
parent
a82b0d090e
commit
2af6d82058
|
@ -83,7 +83,7 @@ USE_L10N = True
|
||||||
|
|
||||||
USE_TZ = True
|
USE_TZ = True
|
||||||
TEMPLATE_DIRS = (
|
TEMPLATE_DIRS = (
|
||||||
'templates/',
|
os.path.join(BASE_DIR, 'templates/'),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -91,3 +91,4 @@ TEMPLATE_DIRS = (
|
||||||
# https://docs.djangoproject.com/en/1.7/howto/static-files/
|
# https://docs.djangoproject.com/en/1.7/howto/static-files/
|
||||||
|
|
||||||
STATIC_URL = '/static/'
|
STATIC_URL = '/static/'
|
||||||
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
|
||||||
|
|
Loading…
Reference in New Issue