mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-01-19 01:21:01 +08:00
17 lines
416 B
Bash
Executable File
17 lines
416 B
Bash
Executable File
#!/bin/bash
|
||
#后台运行Chat_on_webchat执行脚本
|
||
|
||
cd `dirname $0`/..
|
||
export BASE_DIR=`pwd`
|
||
echo $BASE_DIR
|
||
|
||
# check the nohup.out log output file
|
||
if [ ! -f "${BASE_DIR}/nohup.out" ]; then
|
||
touch "${BASE_DIR}/nohup.out"
|
||
echo "create file ${BASE_DIR}/nohup.out"
|
||
fi
|
||
|
||
nohup python3 "${BASE_DIR}/app.py" & tail -f "${BASE_DIR}/nohup.out"
|
||
|
||
echo "Chat_on_webchat is starting,you can check the ${BASE_DIR}/nohup.out"
|