We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cfab35 commit 5bf212cCopy full SHA for 5bf212c
project/settings.py
@@ -42,7 +42,6 @@
42
'django.contrib.sessions',
43
'django.contrib.messages',
44
'django.contrib.staticfiles',
45
- 'debug_toolbar',
46
'welcome',
47
]
48
@@ -76,16 +75,21 @@
76
75
},
77
78
79
-WSGI_APPLICATION = 'wsgi.application'
+WSGI_APPLICATION = 'django-ex.wsgi.application'
80
81
82
# Database
83
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
84
85
-from . import database
86
-
87
DATABASES = {
88
- 'default': database.config()
+ 'default': {
+ 'ENGINE': 'django.db.backends.oracle',
+ 'NAME': 'TCF24',
+ 'USER': 'LJML_OWN',
89
+ 'PASSWORD': 'LJML_OWN',
90
+ 'HOST': 'DBTCF24.sede.corp.sanpaoloimi.com',
91
+ 'PORT': '2056',
92
+ }
93
}
94
95
0 commit comments