Created
October 24, 2015 09:45
-
-
Save hallvors/fdcfe5aeaea86b0fcf1f to your computer and use it in GitHub Desktop.
Suggested webcompat.com secrets.py.example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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