Skip to content

Commit

Permalink
Pull NGROK_AUTHTOKEN from env var, if set.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Dec 27, 2023
1 parent d68d64e commit 280f140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hookee/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"content_type": confuse.String(default=None),
"request_script": confuse.Filename(default=None),
"response_script": confuse.Filename(default=None),
"auth_token": confuse.String(default=None),
"auth_token": confuse.String(default=os.environ.get("NGROK_AUTHTOKEN")),
"plugins_dir": confuse.Filename(),
"plugins": list,
"console_width": confuse.Integer(default=80),
Expand Down

0 comments on commit 280f140

Please sign in to comment.