|
@@ -7,6 +7,11 @@ env = environ.Env()
|
7
|
7
|
|
8
|
8
|
# WSGI_APPLICATION = "sandbox.wsgi.application"
|
9
|
9
|
# ASGI_APPLICATION = "sandbox.asgi.application"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+WSGI_APPLICATION = "edan_v1.wsgi.application"
|
|
13
|
+ASGI_APPLICATION = "edan_v1.asgi.application"
|
|
14
|
+
|
10
|
15
|
# Path helper
|
11
|
16
|
location = lambda x: os.path.join(
|
12
|
17
|
os.path.dirname(os.path.realpath(__file__)), x)
|
|
@@ -169,8 +174,8 @@ MIDDLEWARE = [
|
169
|
174
|
'oscar.apps.basket.middleware.BasketMiddleware',
|
170
|
175
|
]
|
171
|
176
|
|
172
|
|
-ROOT_URLCONF = 'urls'
|
173
|
|
-
|
|
177
|
+# ROOT_URLCONF = 'urls'
|
|
178
|
+ROOT_URLCONF = "edan_v1.urls"
|
174
|
179
|
|
175
|
180
|
# A sample logging configuration. The only tangible logging
|
176
|
181
|
# performed by this configuration is to send an email to
|