django常用命令

2022-06-19 16:39:07 字數 526 閱讀 4683

常用命令

建立專案

django-admin startproject project_name

建立資料庫指令碼

python manage.py makemigrations

生成資料庫

python manage.py migrate

執行python manage.py runserver

停止(查詢程序號,並kill)

netstat -anp | grep 8000

kill pid

指定ip,port執行

python manage.py runserver 0.0.0.0:8000清空資料庫

python manage.py flush

建立超級管理員

python manage.py createsuperuser

修改密碼

python manage.py changepassword username

匯出資料

匯入資料

Django常用命令

開啟 linux 或 macos 的 terminal 終端 直接在 終端中輸入這些命令 不是 python 的 shell中 如果是 windows 用 cmd 開始 搜尋 cmd 或者 快捷鍵 win r,輸入 cmd 直接在 cmd 上操作。django admin.py startproje...

Django常用命令

向大家介紹一些django常用的命令 安裝django pip install django 指定版本 pip3 install django 2.0 新建專案 django admin.py startproject mysite 啟動 python manage.py runserver 808...

django常用命令

1.製作遷移檔案 python manage.py makemigrations 2.遷移 python manage.py migrate 1.通過執行cmd命令執行多指令碼 直接切換到當前.cmd檔案所在的目錄,直接輸入.cmd命令 a.cmd 2.通過dump命令將model對應的表的資料進行...