From e5c02482079b08ac6e5c48d3aebcc3fa69ee5464 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Wed, 14 Jun 2023 07:47:09 -0500 Subject: [PATCH] wip --- learn_sql_model/config.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/learn_sql_model/config.py b/learn_sql_model/config.py index e82b73c..8deb688 100644 --- a/learn_sql_model/config.py +++ b/learn_sql_model/config.py @@ -21,10 +21,9 @@ class ApiServer(BaseModel): class ApiClient(BaseModel): - host: str = "0.0.0.0" - port: int = 5000 - protocol: str = "http" - url: str = f"{protocol}://{host}:{port}" + host: str = "learn-sql-model.fly.dev" + protocol: str = "https" + url: str = f"{protocol}://{host}" class Database: