Skip to content

Commit

Permalink
Fixed Discourse base url env var. (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
facundobatista authored Dec 10, 2023
1 parent 722673c commit f73c093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyarweb/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
MASTODON_API_BASE_URL = os.environ.get('MASTODON_API_BASE_URL')

# Discourse constants
DISCOURSE_BASE_URL = os.environ.get('DISCOURSE_API_BASE_URL')
DISCOURSE_BASE_URL = os.environ.get('DISCOURSE_BASE_URL')
DISCOURSE_API_KEY = os.environ.get('DISCOURSE_API_KEY')
DISCOURSE_USERNAME = os.environ.get('DISCOURSE_USERNAME')
DISCOURSE_CATEGORY = os.environ.get('DISCOURSE_CATEGORY')
Expand Down

0 comments on commit f73c093

Please sign in to comment.