summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alembic/env.py11
-rw-r--r--app/database.py2
2 files changed, 9 insertions, 4 deletions
diff --git a/alembic/env.py b/alembic/env.py
index acb3a7a..3a90171 100644
--- a/alembic/env.py
+++ b/alembic/env.py
@@ -12,9 +12,14 @@ from app.config import settings
# this is the Alembic Config object, which provides
# access to the values within the .ini file in use.
config = context.config
-config.set_main_option("sqlalchemy.url", f'postgresql+psycopg2://{settings.database_username}:\
- {settings.database_password}@{settings.database_hostname}:{settings.database_port}\
- /{settings.database_name}')
+
+#config.set_main_option("sqlalchemy.url", f'postgresql+psycopg2://{settings.database_username}:\
+# {settings.database_password}@{settings.database_hostname}:{settings.database_port}\
+# /{settings.database_name}')
+
+config.set_main_option("sqlalchemy.url", f'postgresql+psycopg2://zgziodukncnnof:\
+ bb1176f2961766e2d5edf439b0889f1cbb52288983ea073e94ef387ddb3e5d59@\
+ ec2-18-215-8-186.compute-1.amazonaws.com:5432/dfhqvfedeess9u')
# Interpret the config file for Python logging.
# This line sets up loggers basically.
diff --git a/app/database.py b/app/database.py
index 86bd085..609d84b 100644
--- a/app/database.py
+++ b/app/database.py
@@ -7,7 +7,7 @@ import psycopg2 #Library to connect to postgres
from .config import settings
#SQLALCHEMY_DATABASE_URL = f'postgresql://{settings.database_username}:{settings.database_password}@{settings.database_hostname}:{settings.database_port}/{settings.database_name}'
-SQLALCHEMY_DATABASE_URL = "postgresql://zgziodukncnnof:bb1176f2961766e2d5edf439b0889f1cbb52288983ea073e94ef387ddb3e5d59@ec2-18-215-8-186.compute-1.amazonaws.com:5432/dfhqvfedeess9u"
+SQLALCHEMY_DATABASE_URL = 'postgresql://zgziodukncnnof:bb1176f2961766e2d5edf439b0889f1cbb52288983ea073e94ef387ddb3e5d59@ec2-18-215-8-186.compute-1.amazonaws.com:5432/dfhqvfedeess9u'
engine = create_engine(SQLALCHEMY_DATABASE_URL)