Skip to content

Commit 2a9c823

Browse files
author
A85N
committed
claustrofobia
1 parent 3311c1f commit 2a9c823

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

project/settings.py

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,22 @@
8383

8484
DATABASES = {
8585
'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',
86+
'ENGINE': 'django.db.backends.sqlite3',
87+
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
9288
}
9389
}
9490

91+
# DATABASES = {
92+
# 'default': {
93+
# 'ENGINE': 'django.db.backends.oracle',
94+
# 'NAME': 'TCF24',
95+
# 'USER': 'LJML_OWN',
96+
# 'PASSWORD': 'LJML_OWN',
97+
# 'HOST': 'DBTCF24.sede.corp.sanpaoloimi.com',
98+
# 'PORT': '2056',
99+
# }
100+
# }
101+
95102

96103
# Password validation
97104
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators

0 commit comments

Comments
 (0)