2024-10-08 11:35:42 -04:00
|
|
|
|
|
|
|
|
- 常用开发命令
|
|
|
|
|
|
|
|
|
|
```
|
2024-10-13 10:15:58 -04:00
|
|
|
gunicorn -b :7201 -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 app:app
|
|
|
|
|
gunicorn -b :7201 -w 1 app:app
|
2024-10-14 12:29:57 -04:00
|
|
|
gunicorn -c setting.py app:app
|
2024-10-08 11:35:42 -04:00
|
|
|
|
|
|
|
|
```
|