We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 635071a commit 7096229Copy full SHA for 7096229
bin/env_vars.sh.template
@@ -15,6 +15,9 @@ export DISQUS_API_PUBLIC=""
15
export DISQUS_SSO_ID=""
16
export DISQUS_SSO_USERNAME=""
17
export DISQUS_SSO_EMAIL=""
18
+export DISQUS_FORUM=""
19
+
20
+export AUTHOR_URL=""
21
22
export EMAIL=""
23
codebender_testing/disqus.py
@@ -12,8 +12,8 @@
12
import re
13
14
-FORUM = 'codebender-cc'
-AUTHOR_URL = 'https://codebender.cc/user/codebender'
+FORUM = os.getenv('DISQUS_FORUM', 'codebender-cc')
+AUTHOR_URL = os.getenv('AUTHOR_URL', 'https://codebender.cc/user/codebender')
DISQUS_REQUESTS_PER_HOUR = 1000
DISQUS_WAIT = (DISQUS_REQUESTS_PER_HOUR / 60) / 60
CHANGE_LOG = 'examples_compile_log.json'
0 commit comments