加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
start.sh 642 Bytes
一键复制 编辑 原始数据 按行查看 历史
guanfuchang 提交于 2021-12-23 14:51 . 修改启动脚本
#!/bin/sh
python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic --noinput
# start celery beat
# nohup python manage.py celery beat -l info > ./logs/beat.log 2>&1 &
nohup celery -A FasterRunner beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler --pidfile= > ./logs/beat.log 2>&1 &
# start celery worker
# celery multi start w1 -A FasterRunner -l info --logfile=./logs/worker.log
nohup celery -A FasterRunner worker --pool=solo -l info --logfile=./logs/worker.log >/dev/null 2>&1 &
# start fastrunner
gunicorn FasterRunner.wsgi:application -w 4 -k gthread -b 0.0.0.0:8001 --chdir=/app
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化