justinxzhao's picture
Add all relevant code.
3cd07df
raw
history blame contribute delete
280 Bytes
from git import Repo
import os
import streamlit as st
REPO_NAME = "name_recommender"
if os.path.exists(f"./{REPO_NAME}"):
pass
else:
Repo.clone_from(st.secrets["GIT_URL"], f"./{REPO_NAME}")
import name_recommender.name_recommender.main_app as main_app
main_app.main()