Skip to content
/ kuiz Public

django實作之線上測驗網站, 佈署在 PythonAnywhere.com

Notifications You must be signed in to change notification settings

YuanData/kuiz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django實作線上測驗網站

django實作之線上測驗網站, 佈署在 https://yuandata.pythonanywhere.com

測驗頁面

管理員主頁

編輯題目

django 設定說明

django專案設定和啟動步驟。

環境設定

確保開發環境已安裝Python和django。依照以下步驟安裝專案所需依賴套件。

  1. 依賴套件安裝 在終端機(命令提示字元)中,切換至專案目錄,執行以下命令安裝依賴套件:

    pip install -r requirements.txt

資料庫設定

完成依賴套件安裝後,進行資料庫設定。

  1. 建立資料庫遷移 執行以下命令,為模型建立新的資料庫遷移檔案:

    python manage.py makemigrations
  2. 套用資料庫遷移 執行以下命令,套用資料庫遷移以創建資料庫結構:

    python manage.py migrate

建立管理員帳號

為登入django管理後台,需要建立管理員帳號。

執行以下命令並依照提示完成管理員帳號設定:

python manage.py createsuperuser

啟動開發伺服器

完成以上設定,可啟動django開發伺服器運行專案。

執行以下命令啟動伺服器:

python manage.py runserver

伺服器啟動後,透過瀏覽器訪問 http://127.0.0.1:8000/ 查看專案。

About

django實作之線上測驗網站, 佈署在 PythonAnywhere.com

Topics

Resources

Stars

Watchers

Forks