From 2f5614666fb168085f0fcc67dbc8d8054dc864fd Mon Sep 17 00:00:00 2001 From: alazo Date: Thu, 5 Jan 2017 09:00:09 +0100 Subject: [PATCH] Deployement --- common/settings.py | 2 +- common/wsgi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/settings.py b/common/settings.py index 67167b9..ffe054d 100644 --- a/common/settings.py +++ b/common/settings.py @@ -110,7 +110,7 @@ USE_TZ = True # https://docs.djangoproject.com/en/1.10/howto/static-files/ STATIC_URL = '/static/' -#STATIC_ROOT = os.path.join(BASE_DIR, 'static/') +STATIC_ROOT = os.path.join(BASE_DIR, 'static/') MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media') diff --git a/common/wsgi.py b/common/wsgi.py index 3fd83d1..6f24829 100644 --- a/common/wsgi.py +++ b/common/wsgi.py @@ -11,6 +11,6 @@ import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "eds.settings") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "common.settings") application = get_wsgi_application()