1.0.django的目录结构
创建项目
$ django-admin startproject mysite项目目录结构
mysite/
manage.py
mysite/
__init__.py
settings.py
urls.py
asgi.py
wsgi.py运行项目
参考文档
Last updated
$ django-admin startproject mysitemysite/
manage.py
mysite/
__init__.py
settings.py
urls.py
asgi.py
wsgi.pyLast updated
$ python manage.py runserverPerforming system checks...
System check identified no issues (0 silenced).
You have unapplied migrations; your app may not work properly until they are applied.
Run 'python manage.py migrate' to apply them.
九月 13, 2020 - 15:50:53
Django version 3.1, using settings 'mysite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.