使用 visual studio 代码中的运行按钮运行 Django 服务器

问题描述 投票:0回答:3

在 pyCharm 中,我们有这个选项,我们可以在其中配置

Run button
通过将服务器添加到脚本路径来启动服务器。

我想在 visual studio code 中做同样的事情,这样每当我点击运行时,我的 django 服务器就会启动。

python django visual-studio-code configuration pycharm
3个回答
3
投票

You need to create a

launch.json
in the folder
.vscode
which sits in the same folder as your
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


0
投票

您可以在

Run and Debug
侧边栏中更改配置:


0
投票
  1. 在 vscode 中,确保您与 manage.py 在同一文件夹中
  2. 从 vscode 顶部的菜单栏中选择 TERMINAL -> NEW TERMINAL。 (将启动一个终端窗口)。
  3. 在终端窗口中输入:python manage.py runserver
  4. 记得保持窗口打开和最小化。
© www.soinside.com 2019 - 2024. All rights reserved.