Django基本命令
Posted hycstar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django基本命令相关的知识,希望对你有一定的参考价值。
## 以下命令使用Django的默认数据库SQLite
## 新建Django项目
(django) [email protected]:~$ django-admin startproject django_project
## 开启服务器
(django) [email protected]:~/django_project$ python manage.py runserver
## 新建应用
(django) [email protected]:~/django_project$ python manage.py startapp books
## 验证模型
(django) [email protected]:~/django_project$ python manage.py check
## 生成数据迁移文件
(django) [email protected]:~/django_project$ python manage.py makemigrations books
## 数据迁移准备--0001为生成的数据迁移文件,全名为0001_initial.py,此命令没有将数据迁移到数据库,只是生成数据库命令
(django) [email protected]:~/django_project$ python manage.py sqlmigrate books 0001
## 数据迁移
(django) [email protected]:~/django_project$ python manage.py migrate
## 创建超级用户
(django) [email protected]:~/django_project$ python manage.py createsuperuser
## 未完待续。。。
(django) [email protected]:~/django_project$
(django) [email protected]:~/django_project$
以上是关于Django基本命令的主要内容,如果未能解决你的问题,请参考以下文章