# 华南理工大学随手帮小程序 **Repository Path**: gdpyy/suishoubang ## Basic Information - **Project Name**: 华南理工大学随手帮小程序 - **Description**: 华南理工大学随手帮小程序 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-07-25 - **Last Updated**: 2022-11-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 先决条件 > python==3.7 > redis==latest > mysql==8.0 > rabbitmq==3.9 > nginx # 部署 ```shell # shellcheck disable=SC2046 # 杀死进程 kill -9 $(netstat -anp | grep 8570 | awk '{printf $7}' | cut -d/ -f1) #启动主程序 nohup gunicorn suishoubang.wsgi:application --bind 0.0.0.0:8570 & #定时任务 nohup celery -A suishoubang worker -l INFO & ```