更新 知識庫

2025-06-23 06:08:32 +00:00
parent 0c97938087
commit 6d3ad6fec1

@@ -25,3 +25,17 @@ ALLOWED_HOSTS = [ "192.168.30.107" ]
```bash
python3 manage.py runserver 0.0.0.0:8000
```
生產模式(wsgi)
使用 gunicorn
```bash
pip3 install gunicorn
```
透過 gunicorn 啟動
```bash
gunicorn --bind 0.0.0.0:8000 mysite.wsgi:application
```