Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
Remove unnecessary env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Jul 17, 2024
1 parent 404019a commit 01ab77b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@
class Base(object):
ENVIRONMENT = os.environ.get("ENVIRONMENT", "production")

SECRET_KEY = os.environ.get("SECRET_KEY")

DEBUG = strtobool(os.getenv("DEBUG", "False"))
LOG_LEVEL = os.getenv("LOG_LEVEL", "info")

SENTRY_DSN = os.getenv("SENTRY_DSN", "")
SENTRY_SAMPLE_RATE = float(os.getenv("SENTRY_SAMPLE_RATE", "1.0"))
SENTRY_JS = os.getenv("SENTRY_JS", "")

ROSETTA_API_URL = os.environ.get("ROSETTA_API_URL").rstrip("/")
WAGTAIL_API_URL = os.environ.get("WAGTAIL_API_URL").rstrip("/")
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ services:
environment:
- ENVIRONMENT=develop
- CONFIG=config.Develop
- SECRET_KEY=abc123
- LOG_LEVEL=debug
- ROSETTA_API_URL=http://afa13a7c0067b4f01991b0bad9e003a4-edf0e30af2b95f5f.elb.eu-west-2.amazonaws.com/api/v1
- WAGTAIL_API_URL=http://host.docker.internal:8000/api/v2
Expand Down

0 comments on commit 01ab77b

Please sign in to comment.