File size: 620 Bytes
fc85bd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os

if os.path.exists('.env'):
    from dotenv import load_dotenv
    print("Loading environment variables from .env file")
    load_dotenv()
    
destination = 'hidden_gems'
    
if not os.path.exists(destination):
    import subprocess
    repo_url = os.getenv("GIT_CORE")
    command = f'git clone {repo_url} {destination}'
    try:
        subprocess.check_output(command, stderr=subprocess.STDOUT, shell=True)#, env=env)
        print('Repository cloned successfully.')
    except subprocess.CalledProcessError as e:
        print(f'Error cloning repository')

from hidden_gems.app import demo

demo.launch()