Change settings.py and config.json to use an external PostgresDB

This commit is contained in:
Tony Hendrick
2020-05-12 15:08:01 -07:00
parent 545740659c
commit 245f3d09a8
2 changed files with 3 additions and 1 deletions

View File

@@ -99,6 +99,8 @@ DATABASES = {
"NAME": CONFIG.catalogue_db,
"USER": "pyshelf",
"PASSWORD": CONFIG.password,
"HOST": CONFIG.db_host,
"PORT": CONFIG.db_port,
}
}