SW / launch.py
BBrother's picture
Update launch.py
b890475
raw
history blame contribute delete
No virus
2.3 kB
from modules import launch_utils
args = launch_utils.args
python = launch_utils.python
git = launch_utils.git
index_url = launch_utils.index_url
dir_repos = launch_utils.dir_repos
commit_hash = launch_utils.commit_hash
git_tag = launch_utils.git_tag
run = launch_utils.run
is_installed = launch_utils.is_installed
repo_dir = launch_utils.repo_dir
run_pip = launch_utils.run_pip
check_run_python = launch_utils.check_run_python
git_clone = launch_utils.git_clone
git_pull_recursive = launch_utils.git_pull_recursive
list_extensions = launch_utils.list_extensions
run_extension_installer = launch_utils.run_extension_installer
prepare_environment = launch_utils.prepare_environment
configure_for_tests = launch_utils.configure_for_tests
start = launch_utils.start
from pathlib import Path
ngrok_use = True
#ngrok穿透
ngrokTokenFile='/root/main/Authtoken.txt' # 非必填 存放ngrokToken的文件的路径
def ngrok_start(ngrokTokenFile: str, port: int, address_name: str, should_run: bool):
if not should_run:
print('Skipping ngrok start')
return
if Path(ngrokTokenFile).exists():
with open(ngrokTokenFile, encoding="utf-8") as nkfile:
ngrokToken = nkfile.readline()
print('use nrgok')
from pyngrok import conf, ngrok
conf.get_default().auth_token = ngrokToken
conf.get_default().monitor_thread = False
ssh_tunnels = ngrok.get_tunnels(conf.get_default())
if len(ssh_tunnels) == 0:
ssh_tunnel = ngrok.connect(port, bind_tls=True)
print(f'{address_name}:' + ssh_tunnel.public_url)
else:
print(f'{address_name}:' + ssh_tunnels[0].public_url)
else:
print('skip start ngrok')
if ngrok_use == True:
ngrok_start(ngrokTokenFile,7860,'',ngrok_use)
def main():
if args.dump_sysinfo:
filename = launch_utils.dump_sysinfo()
print(f"Sysinfo saved as {filename}. Exiting...")
exit(0)
launch_utils.startup_timer.record("initial startup")
with launch_utils.startup_timer.subcategory("prepare environment"):
if not args.skip_prepare_environment:
prepare_environment()
if args.test_server:
configure_for_tests()
start()
if __name__ == "__main__":
main()