Skip to content

Commit

Permalink
fix: correct mailgun API URL for email sending
Browse files Browse the repository at this point in the history
  • Loading branch information
ngurenyaga committed Jul 14, 2021
1 parent df3f602 commit a3f3725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ steps:
'--max-instances', '4',
'--memory', '256M',
'--cpu', '1',
'-update-secrets', '/app/.env=mle_django_settings:latest'
'--update-secrets', '/app/.env=mle_django_settings:latest'
]

images:
Expand Down
2 changes: 1 addition & 1 deletion config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
# ADMIN
# ------------------------------------------------------------------------------
# Django Admin URL regex.
ADMIN_URL = env("DJANGO_ADMIN_URL")
ADMIN_URL = env("DJANGO_ADMIN_URL", default="admin/")

# Anymail
# ------------------------------------------------------------------------------
Expand Down

0 comments on commit a3f3725

Please sign in to comment.