|
@@ -37,6 +37,22 @@ CSRF_TRUSTED_ORIGINS =["https://*.edanflor.com"]
|
37
|
37
|
|
38
|
38
|
# CORS_ORIGIN_WHITELIST
|
39
|
39
|
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+# ==============
|
|
44
|
+# Oscar settings
|
|
45
|
+# ==============
|
|
46
|
+
|
|
47
|
+from oscar.defaults import *
|
|
48
|
+# =============
|
|
49
|
+# Debug Toolbar
|
|
50
|
+# =============
|
|
51
|
+
|
|
52
|
+INTERNAL_IPS = ['127.0.0.1', '::1']
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
40
|
56
|
# Application definition
|
41
|
57
|
|
42
|
58
|
INSTALLED_APPS = [
|
|
@@ -320,16 +336,6 @@ LOGGING = {
|
320
|
336
|
}
|
321
|
337
|
|
322
|
338
|
|
323
|
|
-# ==============
|
324
|
|
-# Oscar settings
|
325
|
|
-# ==============
|
326
|
|
-
|
327
|
|
-from oscar.defaults import *
|
328
|
|
-# =============
|
329
|
|
-# Debug Toolbar
|
330
|
|
-# =============
|
331
|
|
-
|
332
|
|
-INTERNAL_IPS = ['127.0.0.1', '::1']
|
333
|
339
|
|
334
|
340
|
|
335
|
341
|
|