We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90c4040 commit 3dbd76dCopy full SHA for 3dbd76d
molecad/settings.py
@@ -10,9 +10,9 @@ class Settings(BaseSettings):
10
fetch_dir: Path = Field("./data/fetch", env="FETCH_DIR")
11
split_dir: Path = Field("./data/split", env="SPLIT_DIR")
12
13
- api_url: HttpUrl = Field("http://localhost:8000", env="API_URL")
+ api_url: HttpUrl = Field("http://127.0.0.1:8000", env="API_URL")
14
api_version: str = Field("", env="API_VERSION")
15
- app_url: HttpUrl = Field("http://localhost:8050", env="APP_URL")
+ app_url: HttpUrl = Field("http://127.0.0.1:8050", env="APP_URL")
16
17
mongo_host: str = Field("127.0.0.1", env="MONGO_HOST")
18
mongo_port: int = Field(27017, env="MONGO_PORT")
0 commit comments