Skip to content

Instantly share code, notes, and snippets.

@hallvors
Created October 24, 2015 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hallvors/fdcfe5aeaea86b0fcf1f to your computer and use it in GitHub Desktop.
Save hallvors/fdcfe5aeaea86b0fcf1f to your computer and use it in GitHub Desktop.
Suggested webcompat.com secrets.py.example
# Get the client id and client secret from GitHub if you're part of the webcompat
# organization. Otherwise, create your own test and production applications,
# and take note of the client id and client secret GitHub gives you.
#
# [1]<https://github.com/organizations/webcompat/settings/applications/>
# If you're running this locally, you can ignore PRODUCTION and DEVELOPMENT
# blocks
# Production = webcompat.com
if PRODUCTION:
GITHUB_CLIENT_ID = ""
GITHUB_CLIENT_SECRET = ""
GITHUB_CALLBACK_URL = ""
# Development = staging.webcompat.com
elif DEVELOPMENT:
GITHUB_CLIENT_ID = ""
GITHUB_CLIENT_SECRET = ""
GITHUB_CALLBACK_URL = ""
OAUTH_TOKEN = ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment