Spaces:
Runtime error
Runtime error
File size: 255 Bytes
ca1caa4 |
1 2 3 4 5 6 7 8 9 10 11 |
from git import Repo
import os
GITHUB_REPO_URL = os.environ.get("GITHUB_REPO_URL")
if not os.path.exists('repo_directory'):
Repo.clone_from(GITHUB_REPO_URL, 'repo_directory')
from repo_directory.CustomerSupportIntelligence.app import main
main() |