wip
This commit is contained in:
parent
b8a9ea0f17
commit
e5c0248207
1 changed files with 3 additions and 4 deletions
|
|
@ -21,10 +21,9 @@ class ApiServer(BaseModel):
|
||||||
|
|
||||||
|
|
||||||
class ApiClient(BaseModel):
|
class ApiClient(BaseModel):
|
||||||
host: str = "0.0.0.0"
|
host: str = "learn-sql-model.fly.dev"
|
||||||
port: int = 5000
|
protocol: str = "https"
|
||||||
protocol: str = "http"
|
url: str = f"{protocol}://{host}"
|
||||||
url: str = f"{protocol}://{host}:{port}"
|
|
||||||
|
|
||||||
|
|
||||||
class Database:
|
class Database:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue