Test for the uat db
This commit is contained in:
@@ -61,10 +61,21 @@ TEMPLATES = [
|
|||||||
|
|
||||||
WSGI_APPLICATION = 'eventify.wsgi.application'
|
WSGI_APPLICATION = 'eventify.wsgi.application'
|
||||||
|
|
||||||
|
# DATABASES = {
|
||||||
|
# 'default': {
|
||||||
|
# 'ENGINE': 'django.db.backends.sqlite3',
|
||||||
|
# 'NAME': BASE_DIR / 'db.sqlite3',
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': 'django.db.backends.postgresql',
|
||||||
'NAME': BASE_DIR / 'db.sqlite3',
|
'NAME': 'eventify_uat_db', # your DB name
|
||||||
|
'USER': 'eventify_uat', # your DB user
|
||||||
|
'PASSWORD': 'eventifyplus@!@#$', # your DB password
|
||||||
|
'HOST': '0.0.0.0', # or IP/domain
|
||||||
|
'PORT': '5440', # default PostgreSQL port
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user