File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
os .environ ['OAUTHLIB_INSECURE_TRANSPORT' ] = '1'
15
15
16
16
app = Flask (__name__ )
17
- app .config ['SECRET_KEY' ] = 'yoyohoneysingh '
17
+ app .config ['SECRET_KEY' ] = '<password> '
18
18
app .config ['SQLALCHEMY_DATABASE_URI' ] = 'sqlite:///oauth/login.db'
19
19
20
- github_bp = make_github_blueprint (client_id = '99e1b3c00d561e8b5d8c ' , client_secret = 'c6bfe7353ef012d67d3823ff218f7b4961165779 ' )
20
+ github_bp = make_github_blueprint (client_id = '<insert> ' , client_secret = '<insert> ' )
21
21
app .register_blueprint (github_bp , url_prefix = "/github_login" )
22
22
23
23
db = SQLAlchemy (app )
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def __init__(self, username):
37
37
# PyGithub stuff
38
38
from github import Github
39
39
40
- g = Github ("046c99159c4e1dbb4ebedc157b173459e0488ec4 " )
40
+ g = Github ("<insert> " )
41
41
repo_list = [ item .url [19 :] for item in projectList ]
42
42
# for item in repo_list:
43
43
# print(item)
You can’t perform that action at this time.
0 commit comments