Django命令行命令

Django命令包括:

  • 项目创建
  • 应用创建
  • 数据库迁移
  • 测试
  • 运行调试服务器

cmd中的执行如下命令

django-admin 
python django-admin.py
Type 'django-admin help ' for help on a specific subcommand.

Available subcommands:

[django]
    check
    compilemessages
    createcachetable
    dbshell
    diffsettings
    dumpdata
    flush
    inspectdb
    loaddata
    makemessages
    makemigrations
    migrate
    runserver
    sendtestemail
    shell
    showmigrations
    sqlflush
    sqlmigrate
    sqlsequencereset
    squashmigrations
    startapp
    startproject
    test
    testserver
Note that only Django core commands are listed as settings are not properly conf
igured (error: Requested setting INSTALLED_APPS, but settings are not configured
. You must either define the environment variable DJANGO_SETTINGS_MODULE or call
 settings.configure() before accessing settings.).

1、创建项目

django-admin startproject <项目名称>
  • 执行manage.py文件,查看其命令行列表
Type 'manage.py help ' for help on a specific subcommand.

Available subcommands:

[auth]
    changepassword
    createsuperuser

[contenttypes]
    remove_stale_contenttypes

[django]
    check
    compilemessages
    createcachetable
    dbshell
    diffsettings
    dumpdata
    flush
    inspectdb
    loaddata
    makemessages
    makemigrations
    migrate
    sendtestemail
    shell
    showmigrations
    sqlflush
    sqlmigrate
    sqlsequencereset
    squashmigrations
    startapp
    startproject
    test
    testserver

[sessions]
    clearsessions

[staticfiles]
    collectstatic
    findstatic
    runserver

项目给文件说明

1、__init__.py:空文件,表示该目录是一个Python包
2、settings.py:Django项目的配置文件。
3、urls.py:Django项目URL声明,汇总项目中所有的请求路径(路由)
4、wsgi.py:让项目的运行在WSGI兼容的Web服务器上的入口
Django项目结构

  • 项目和应用的区别
    1,应用是个专门做某件事的网络应用程序,一般与"manager.py"同目录的模块,
    2,项目是一个网站使用的配置和应用的集合,可以包含很多个应用,一般包含“manager.py”文件的文件夹包含的内容,就是一个项目。
    创建名为blog的应用
python manage.py startapp blog

你可能感兴趣的:(Python-Django)