Make paths in settings.py "relative"

master
Sebastian Lohff 7 years ago
parent a82b0d090e
commit 2af6d82058

@ -83,7 +83,7 @@ USE_L10N = True
USE_TZ = True
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/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')

Loading…
Cancel
Save