|
@@ -21,10 +21,10 @@ MANAGERS = ADMINS
|
|
DATABASES = {
|
|
DATABASES = {
|
|
# Base de donnée du SI
|
|
# Base de donnée du SI
|
|
'default': {
|
|
'default': {
|
|
- 'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
|
|
- 'NAME': 'coin',
|
|
|
|
- 'USER': 'coin',
|
|
|
|
- 'PASSWORD': '',
|
|
|
|
|
|
+ 'ENGINE': 'django.db.backends.sqlite3',
|
|
|
|
+ 'NAME': 'coin.sqlite3',
|
|
|
|
+ 'USER': '', # Not needed for SQLite
|
|
|
|
+ 'PASSWORD': '', # Not needed for SQLite
|
|
'HOST': '', # Empty for localhost through domain sockets
|
|
'HOST': '', # Empty for localhost through domain sockets
|
|
'PORT': '', # Empty for default
|
|
'PORT': '', # Empty for default
|
|
},
|
|
},
|