VjPower's picture
Create app.py
0e5715c
raw
history blame
486 Bytes
from git import Repo
import os
GITHUB_REPO_URL = os.environ.get("GITHUB_REPO_URL")
# git@github.com:coffeebeansdev/AI_Interviewer.git
if not os.path.exists('repo_directory'):
Repo.clone_from(GITHUB_REPO_URL, 'repo_directory')
print(os.system('ls -l repo_directory/')) # testing purpose
# print(os.system('ls -l repo_directory/hugging_spaces')) # testing purpose
# from repo_directory.network18.app import main
from repo_directory.AudioSentimentAnalysis.app import *
main()