《Django+React前后端分离项目开发实战:爱计划》 03 理解项目结构
03 Understanding the Project Structure
《Django+React前后端分离项目开发实战:爱计划》 03 理解项目结构
Let’s look the project files created for us, Open the project folder backend in the code editor.
让我们看看为我们创建的项目文件,在代码编辑器中打开项目文件夹backend。
manage.py
You will see a file manager.py which we should not tinker. manager.py helps us do administrative things. For example to start the local web server.
你会看到一个文件 manager.py,我们不应该去碰它。manager.py 可以帮助我们做一些管理工作。例如,启动本地网络服务器:
python3 manage.py runserver
We will later illustrate more of its administrative functions e.g. creating a new app:
稍后我们将介绍更多的管理功能,例如创建新应用程序:
python3 manage.py startapp todo