fix: ASGI run & ports fix

This commit is contained in:
Piotr Dec 2025-10-16 21:33:25 +02:00
parent 1eab4cd6fc
commit 876b333397
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
4 changed files with 13 additions and 7 deletions

View file

@ -8,7 +8,7 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
class AppConfig(BaseModel):
host: str = "127.0.0.1"
port: int = 8000
port: int = 8081
reload: bool = True