# Django 開發工具作業指引
# 安裝與操作
# 作業指引
# 專案模版
- Djano 結合 VuePress 專案模版 (opens new window)
- 《跟老齊學 Python Django 實戰》習作 (opens new window)
- 與 Docker 及 Docker Compose 結合專案模版 (opens new window)
# Python 套件引用
Django Exceptions (opens new window)
Django raises some of its own exceptions as well as standard Python exceptions.
# 常見異常問題診斷與狀況排除
# 處理執行時期錯誤或意外
# 終止 uwsgi 服務 (opens new window)
當 uwsgi ,以「背景」方式執行時。欲終止其執行:
- 方法一:使用 Kill Process 的方式
sudo pkill -f uwsgi -9
1
- 方法二:使用刪除 PID 方式
kill `pidof uwsgi`
1