zoukankan      html  css  js  c++  java
  • 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

    一 、解释:

     二、如何查看命令解释

      在电工开发环境中使用  django-admin.py + help  + 命令行  既可以查看命令的解释

      example:我们要查看check命令

    (django_basic_venv) C:Usersxuchunlin>django-admin.py help check
    usage: django-admin.py check [-h] [--version] [-v {0,1,2,3}]
                                 [--settings SETTINGS] [--pythonpath PYTHONPATH]
                                 [--traceback] [--no-color] [--tag TAGS]
                                 [--list-tags] [--deploy]
                                 [app_label [app_label ...]]
    
    Checks the entire Django project for potential problems.
    
    positional arguments:
      app_label
    
    optional arguments:
      -h, --help            show this help message and exit
      --version             show program's version number and exit
      -v {0,1,2,3}, --verbosity {0,1,2,3}
                            Verbosity level; 0=minimal output, 1=normal output,
                            2=verbose output, 3=very verbose output
      --settings SETTINGS   The Python path to a settings module, e.g.
                            "myproject.settings.main". If this isn't provided, the
                            DJANGO_SETTINGS_MODULE environment variable will be
                            used.
      --pythonpath PYTHONPATH
                            A directory to add to the Python path, e.g.
                            "/home/djangoprojects/myproject".
      --traceback           Raise on CommandError exceptions
      --no-color            Don't colorize the command output.
      --tag TAGS, -t TAGS   Run only checks labeled with given tag.
      --list-tags           List available tags.
      --deploy              Check deployment settings.
  • 相关阅读:
    201703-1 分蛋糕
    201812-2 小明放学
    201812-1 小明上学
    逆向_Easy_vb
    逆向_入门逆向
    代码审计_弱类型整数大小比较绕过
    代码审计_数组返回NULL绕过
    代码审计_md5()函数
    代码审计_urldecode二次编码绕过
    代码审计_extract变量覆盖
  • 原文地址:https://www.cnblogs.com/xuchunlin/p/6267032.html
Copyright © 2011-2022 走看看