Skip to content

Commit

Permalink
fix(ci): missing env variable error on deployment (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
saladgg committed Sep 26, 2022
1 parent 39b5c13 commit 992df37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
)
DEBUG = env.bool("DJANGO_DEBUG", False)
DJANGO_LOG_LEVEL = env.str("DJANGO_LOG_LEVEL", default="DEBUG")
GOOGLE_ANALYTICS_ID = env.str("GOOGLE_ANALYTICS_ID")
GOOGLE_ANALYTICS_ID = env.str("GOOGLE_ANALYTICS_ID", "G-6XRLBC4TMR")
SECRET_KEY = env.str("DJANGO_SECRET_KEY", "django-insecure-xlb*ys8xwb04c&=y_z")

###############################################################################
Expand Down

0 comments on commit 992df37

Please sign in to comment.