运行 Django 服务器在 visual studio 代码中使用 运行 按钮
Run Django server using the run button in visual studio code
在 pyCharm 中我们有这个选项,我们可以配置 Run button
通过将相同的添加到脚本路径来启动服务器。
我想在 visual studio 代码中做同样的事情,这样每当我点击 运行 时,我的 django 服务器就会启动。
您需要在文件夹 .vscode
中创建一个 launch.json
,该文件夹与您的 manage.py
.
位于同一文件夹中
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\manage.py",
"args": [
"runserver",
],
"django": true
},
]
}
您可以通过单击 run & debug
创建一个,然后在顶部菜单绿色三角形单击 add configuration
、python
、Django
您可以在Run and Debug
侧栏中更改配置:
- 在 vscode 中确保您与 manage.py
位于同一文件夹中
- 从 vscode select 终端顶部的菜单栏 -> 新终端。 (将启动一个终端 window)。
- 在终端 window 中输入:python manage.py runserver
- 记得保持 window 打开并最小化。
在 pyCharm 中我们有这个选项,我们可以配置 Run button
通过将相同的添加到脚本路径来启动服务器。
我想在 visual studio 代码中做同样的事情,这样每当我点击 运行 时,我的 django 服务器就会启动。
您需要在文件夹 .vscode
中创建一个 launch.json
,该文件夹与您的 manage.py
.
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\manage.py",
"args": [
"runserver",
],
"django": true
},
]
}
您可以通过单击 run & debug
创建一个,然后在顶部菜单绿色三角形单击 add configuration
、python
、Django
您可以在Run and Debug
侧栏中更改配置:
- 在 vscode 中确保您与 manage.py 位于同一文件夹中
- 从 vscode select 终端顶部的菜单栏 -> 新终端。 (将启动一个终端 window)。
- 在终端 window 中输入:python manage.py runserver
- 记得保持 window 打开并最小化。