From 020ec4276ad23bd6618ff196c2e517b4990b1abf Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 3 Jul 2021 23:39:36 +0200 Subject: fixed name of protocol in the database URI configuration variable --- instance/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance/config.py b/instance/config.py index 89655edf..577c1659 100644 --- a/instance/config.py +++ b/instance/config.py @@ -22,7 +22,7 @@ DB_CONFIG_DICT = { "port": 5432, } DATABASE_NAME = "postgres" -SQLALCHEMY_DATABASE_URI = "postgres://{user}:{password}@{host}:{port}/{name}".format( +SQLALCHEMY_DATABASE_URI = "postgresql://{user}:{password}@{host}:{port}/{name}".format( name=DATABASE_NAME, **DB_CONFIG_DICT ) -- cgit