Added DATABASE in settings.py.
This commit is contained in:
parent
0f639f1058
commit
27344063d9
|
@ -69,6 +69,20 @@ TEMPLATES = [
|
||||||
|
|
||||||
WSGI_APPLICATION = "config.wsgi.application"
|
WSGI_APPLICATION = "config.wsgi.application"
|
||||||
|
|
||||||
|
# Database
|
||||||
|
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
|
||||||
|
|
||||||
|
DATABASES = {
|
||||||
|
'default': {
|
||||||
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||||
|
'NAME': 'your-db-name',
|
||||||
|
'USER': 'your-db-user',
|
||||||
|
'PASSWORD': 'your-db-user-password',
|
||||||
|
'HOST': 'your-db-host',
|
||||||
|
'PORT': 'your-db-port',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Password validation
|
# Password validation
|
||||||
# https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators
|
# https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators
|
||||||
|
|
Loading…
Reference in New Issue