Spaces:
Runtime error
Runtime error
Aaron Thomas Mathew commited on
init
Browse files
app.py
CHANGED
|
@@ -1,11 +1,12 @@
|
|
| 1 |
import os
|
| 2 |
import uuid
|
| 3 |
from git import Repo
|
| 4 |
-
|
| 5 |
|
| 6 |
GITHUB_PAT = os.getenv("GITHUB_PAT")
|
| 7 |
REPO_URL = f"https://YOUR_USERNAME:{GITHUB_PAT}@github.com/aaronmat1905/DataCraftorSecured.git"
|
| 8 |
REPO_DIRECTORY = "./DataCraftorSecured"
|
|
|
|
| 9 |
|
| 10 |
try:
|
| 11 |
Repo.clone_from(REPO_URL, REPO_DIRECTORY)
|
|
|
|
| 1 |
import os
|
| 2 |
import uuid
|
| 3 |
from git import Repo
|
| 4 |
+
|
| 5 |
|
| 6 |
GITHUB_PAT = os.getenv("GITHUB_PAT")
|
| 7 |
REPO_URL = f"https://YOUR_USERNAME:{GITHUB_PAT}@github.com/aaronmat1905/DataCraftorSecured.git"
|
| 8 |
REPO_DIRECTORY = "./DataCraftorSecured"
|
| 9 |
+
from interface import build_interface, data_model
|
| 10 |
|
| 11 |
try:
|
| 12 |
Repo.clone_from(REPO_URL, REPO_DIRECTORY)
|