Skip to content

Commit

Permalink
fix: missing ENV var
Browse files Browse the repository at this point in the history
  • Loading branch information
nickatnight committed Feb 22, 2023
1 parent b173f64 commit 6bb1a29
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/src/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Settings(BaseSettings):
BACKEND_CORS_ORIGINS: List[AnyHttpUrl] = []
LOG_LEVEL: int = Field(default=logging.INFO, env="LOG_LEVEL")

ENV: str = Field(default="dev", env="ENV")
VERSION: str = Field(default="", env="VERSION")
DEBUG: bool = Field(default=True, env="DEBUG")

Expand Down

0 comments on commit 6bb1a29

Please sign in to comment.