Use psql for dev as well
This commit is contained in:
parent
854ce75993
commit
5326ea7ab0
1 changed files with 7 additions and 3 deletions
|
@ -4,7 +4,11 @@ DEBUG = True
|
||||||
|
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': os.environ.get('SQL_ENGINE', 'django.db.backends.postgresql'),
|
||||||
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
'NAME': os.environ.get('POSTGRES_DB', 'app'),
|
||||||
|
'USER': os.environ.get('POSTGRES_USER', 'app'),
|
||||||
|
'PASSWORD': os.environ.get('POSTGRES_PASSWORD', ''),
|
||||||
|
'HOST': os.environ.get('SQL_HOST', 'localhost'),
|
||||||
|
'PORT': os.environ.get('SQL_PORT', ''),
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue