websoft9/cli/controller.py

42 lines
1.1 KiB
Python
Raw Normal View History

2021-09-26 15:05:59 +00:00
import model, os
2021-09-26 09:57:34 +00:00
path_repo = "./data/application.list"
path_project = ""
2021-09-26 15:05:59 +00:00
# for Git clone HA
github_url = ("https://github.com", "https://github.com.cnpmjs.org", "https://hub.fastgit.org")
2021-09-26 09:57:34 +00:00
class Print:
def __init__(self):
pass
def printRepo():
2021-09-26 15:05:59 +00:00
model.FileOp.printJson(path_repo)
2021-09-27 09:32:10 +00:00
class Create:
2021-09-26 15:05:59 +00:00
2021-09-27 09:32:10 +00:00
def __init__(self, app_name: str, project_name: str):
self.folder = None
self.app_name = app_name
self.project_name = project_name
if self.project_name != None:
self.folder = self.project_name
else:
self.folder = self.app_name
2021-09-26 15:05:59 +00:00
2021-09-27 09:32:10 +00:00
def downRepo(self):
cmd = "git clone --depth=1 " + model.SmoothUrl.res(github_url) + "/websoft9/docker-" + self.app_name + " " + self.folder
if os.path.exists("./"+self.folder):
print(os.path.abspath(self.folder)+" folder already exists")
else:
os.system(cmd)
def upRepo(self):
cmd = "docker-compose -f docker-compose-production.yml --env-file .env_all up -d"
2021-09-26 15:05:59 +00:00
print(cmd)
2021-09-27 09:32:10 +00:00
os.chdir(self.folder)
2021-09-26 15:05:59 +00:00
os.system(cmd)