Skip to content

Commit

Permalink
Remove ENVIRONMENT variable from app config
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Jan 7, 2025
1 parent d9bd795 commit c731f04
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ class Features(object):


class Base(object):
ENVIRONMENT: str = os.environ.get("ENVIRONMENT", "production")

BUILD_VERSION: str = os.environ.get("BUILD_VERSION", "")

SECRET_KEY: str = os.environ.get("SECRET_KEY", "")
Expand All @@ -33,6 +31,4 @@ class Develop(Base, Features):


class Test(Base, Features):
ENVIRONMENT = "test"

FORCE_HTTPS = False

0 comments on commit c731f04

Please # to comment.