Spaces:
Running
Running
pmcuplkinger
commited on
Commit
•
fc9022f
1
Parent(s):
1df8bb2
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
+
TOKEN = os.getenv('TOKEN')
|
4 |
+
USERNAME = os.getenv('USERNAME')
|
5 |
+
REPO = os.getenv('REPO')
|
6 |
+
|
7 |
+
os.system(f"git clone https://{USERNAME}:{TOKEN}@github.com/{USERNAME}/{REPO}.git && cd {REPO} && pip3 install -r requirements.txt && python3 main.py")
|