fix: live reload disabled by default
This commit is contained in:
parent
988c6be557
commit
480471a5ef
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class LoggingConfig(BaseModel):
|
||||||
class AppConfig(BaseModel):
|
class AppConfig(BaseModel):
|
||||||
host: str = "127.0.0.1"
|
host: str = "127.0.0.1"
|
||||||
port: int = 8081
|
port: int = 8081
|
||||||
reload: bool = True
|
reload: bool = False
|
||||||
|
|
||||||
|
|
||||||
class GitConfig(BaseModel):
|
class GitConfig(BaseModel):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue