newapi / start.sh
deeme's picture
Upload start.sh
2c8d85b verified
raw
history blame
341 Bytes
#!/bin/sh
set -ex
# 执行初始化但忽略退出状态
python3 sync.py --mode init || true
# 如果初始化成功,启动同步服务
python3 sync.py --mode sync &
# 等待几秒确保同步服务正常启动
sleep 1
redis-server --daemonize yes --save "" --appendonly no
sleep 2
redis-cli ping
# 启动 one-api 服务
/data/one-api