Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -62,8 +62,10 @@ def main():
|
|
62 |
value="https://github.com/AaronCWacker/AIExample-Clone/")
|
63 |
|
64 |
# GitHub token input
|
65 |
-
github_token = st.text_input("GitHub Personal Access Token", type="password",
|
66 |
-
help="Paste your GitHub token here. See sidebar for instructions on how to get it.")
|
|
|
|
|
67 |
|
68 |
if st.button("Clone and Upload"):
|
69 |
if not github_token:
|
|
|
62 |
value="https://github.com/AaronCWacker/AIExample-Clone/")
|
63 |
|
64 |
# GitHub token input
|
65 |
+
#github_token = st.text_input("GitHub Personal Access Token", type="password",
|
66 |
+
#help="Paste your GitHub token here. See sidebar for instructions on how to get it.")
|
67 |
+
github_token = os.environ.get("GITHUB")
|
68 |
+
|
69 |
|
70 |
if st.button("Clone and Upload"):
|
71 |
if not github_token:
|