Commit 9a6127e3 authored by wanli's avatar wanli

update

parent 402a687d
#!/usr/bin/env bash #!/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 -def | grep "run.sh"
# ps -aux | grep start.py
Cur_Dir=$(pwd)
source venv/bin/activate source venv/bin/activate
nohup /home/evm/workspace/evm-store/backend/venv/bin/python3 /home/evm/workspace/evm-store/backend/start.py > runoob.log 2>&1 & nohup ${Cur_Dir}/venv/bin/python3 ${Cur_Dir}/start.py > runoob.log 2>&1 &
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment