Created
June 2, 2022 09:36
-
-
Save twyle/a9b94a63e9c8a0345ea2567ba9d87f23 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
"""This module contains the routes associated with the github_blueprint Blueprint.""" | |
import os | |
from flask_dance.contrib.github import make_github_blueprint | |
auth = make_github_blueprint( | |
client_id=os.getenv('CLIENT_ID'), | |
client_secret=os.getenv('CLIENT_SECRET'), | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment