diff --git a/app/config.py b/app/config.py index 68876b2..10e0425 100644 --- a/app/config.py +++ b/app/config.py @@ -19,7 +19,7 @@ class ProductionConfig(Config): """Production configuration.""" DEBUG = False - uri = os.environ.get('DATABASE_URL', 'postgres://postgres:59fff56880e1bbb42e753d2a82ac21b6@peterstockings.com:15389/bloodpressure_db') + uri = os.environ.get('DATABASE_URL') if uri and uri.startswith("postgres://"): uri = uri.replace("postgres://", "postgresql://", 1)