deepakchawla-cb's picture
Create app.py
ca1caa4
raw
history blame contribute delete
255 Bytes
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()