Skip to content

Commit 99d366f

Browse files
author
Pritom Gogoi
committed
changes for public
1 parent dbf0ce6 commit 99d366f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1'
1515

1616
app = Flask(__name__)
17-
app.config['SECRET_KEY'] = 'yoyohoneysingh'
17+
app.config['SECRET_KEY'] = '<password>'
1818
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///oauth/login.db'
1919

20-
github_bp = make_github_blueprint(client_id='99e1b3c00d561e8b5d8c', client_secret='c6bfe7353ef012d67d3823ff218f7b4961165779')
20+
github_bp = make_github_blueprint(client_id='<insert>', client_secret='<insert>')
2121
app.register_blueprint(github_bp, url_prefix="/github_login")
2222

2323
db = SQLAlchemy(app)

database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self, username):
3737
# PyGithub stuff
3838
from github import Github
3939

40-
g = Github("046c99159c4e1dbb4ebedc157b173459e0488ec4")
40+
g = Github("<insert>")
4141
repo_list = [ item.url[19:] for item in projectList ]
4242
# for item in repo_list:
4343
# print(item)

0 commit comments

Comments
 (0)