美文网首页
django1-创建并启动django工程

django1-创建并启动django工程

作者: 心明道长 | 来源:发表于2018-06-27 17:18 被阅读0次

    使用pycharm创建django工程

    项目目录结构

     manage.py
     django1---工程主文件夹
            __init__.py
            settings.py
            urls.py
            wsgi.py
      templates  --模板文件夹
    

    -manage.py 项目管理器 工具集 在pycharm面板的下方找到terminal 执行 python manage.py 查看

    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
    
    

    启动工程
    /Users/cx/.conda/envs/django1/bin/python manage.py runserver 8080

    -wsgi.py WSGI (Python Web Server Gateway Interface)(python服务器网关接口) python应用于web服务器之间的接口,
    项目与外界交互的关键 不会用到不要动 不要管它
    -urls.py 路由配置文件
    -settings.py 核心配置文件

    相关文章

      网友评论

          本文标题:django1-创建并启动django工程

          本文链接:https://www.haomeiwen.com/subject/fjqiyftx.html