Untitled
class Profile(StrEnum): # These values should be synced with streaming-picking-v2-pydomain/conf/config.ini. DEVELOP = "develop" PRODUCTION = "production" SIMULATION = "simulation" MOCK = "mock" profile: Profile = Field(env="PROFILE", default=DEFAULT_PROFILE)
Leave a Comment