This commit is contained in:
caoqianming 2020-06-04 21:41:14 +08:00
parent 006a639ef0
commit 67df4b297f
3 changed files with 11 additions and 0 deletions

4
server/s_celerybeat.bat Normal file
View File

@ -0,0 +1,4 @@
@echo off
call venv\scripts\activate.bat
celery -A server beat -l info
pause

View File

@ -0,0 +1,4 @@
@echo off
call venv\scripts\activate.bat
celery -A server worker -l info -P eventlet
pause

3
server/s_server.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
call venv\scripts\activate.bat
python manage.py runserver