• wanli's avatar
    update · 29f449af
    wanli authored
    29f449af
run.sh 523 Bytes
#!/usr/bin/env bash

# 获取当前路径
Cur_Dir=$(pwd)

# 关闭evm_store
supervisorctl stop evm_store

# 切换到release分支
git checkout release

# 拉取最新代码
git pull

# 启动evm_store
supervisorctl start evm_store

# 启动一个定时任务
# cd $Cur_Dir
# source venv/bin/activate
# 0 */1 * * * "${Cur_Dir}/venv/bin/python deploy.py"

# ps -def | grep "run.sh"
# ps -aux | grep start.py

Cur_Dir=$(pwd)

source venv/bin/activate
nohup ${Cur_Dir}/venv/bin/python3 ${Cur_Dir}/start.py > runoob.log 2>&1 &