Skip to content

Commit

Permalink
remove default env vals
Browse files Browse the repository at this point in the history
  • Loading branch information
lcampbell2 committed Aug 29, 2023
1 parent 741ed40 commit 3b67cf7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions services/summaries/summaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

load_dotenv()

DB_USER = os.getenv("DB_USER", "root")
DB_PASS = os.getenv("DB_PASS", "test")
DB_NAME = os.getenv("DB_NAME", "track_dmarc")
DB_URL = os.getenv("DB_URL", "http://localhost:8529")
DB_USER = os.getenv("DB_USER")
DB_PASS = os.getenv("DB_PASS")
DB_NAME = os.getenv("DB_NAME")
DB_URL = os.getenv("DB_URL")

CHARTS = {
# tier 1
Expand Down

0 comments on commit 3b67cf7

Please sign in to comment.