add tests forn forms, products, productors
All checks were successful
Deploy Amap / deploy (push) Successful in 3m45s
All checks were successful
Deploy Amap / deploy (push) Successful in 3m45s
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from pydantic_settings import BaseSettings
|
||||
from pydantic_settings import BaseSettings, SettingsConfigDict
|
||||
|
||||
class Settings(BaseSettings):
|
||||
origins: str
|
||||
@@ -16,8 +16,9 @@ class Settings(BaseSettings):
|
||||
max_age: int
|
||||
debug: bool
|
||||
|
||||
class Config:
|
||||
env_file = "../.env"
|
||||
model_config = SettingsConfigDict(
|
||||
env_file='../.env'
|
||||
)
|
||||
|
||||
settings = Settings()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user