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 3311c1f commit 2a9c823Copy full SHA for 2a9c823
project/settings.py
@@ -83,15 +83,22 @@
83
84
DATABASES = {
85
'default': {
86
- 'ENGINE': 'django.db.backends.oracle',
87
- 'NAME': 'TCF24',
88
- 'USER': 'LJML_OWN',
89
- 'PASSWORD': 'LJML_OWN',
90
- 'HOST': 'DBTCF24.sede.corp.sanpaoloimi.com',
91
- 'PORT': '2056',
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
92
}
93
94
+# DATABASES = {
+# 'default': {
+# 'ENGINE': 'django.db.backends.oracle',
+# 'NAME': 'TCF24',
95
+# 'USER': 'LJML_OWN',
96
+# 'PASSWORD': 'LJML_OWN',
97
+# 'HOST': 'DBTCF24.sede.corp.sanpaoloimi.com',
98
+# 'PORT': '2056',
99
+# }
100
101
+
102
103
# Password validation
104
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators
0 commit comments