Posted by & filed under web 2.0.

Python and Django tutorial in Visual Studio Code

and how to let other pc to access (launch.json):

{
    // 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",
                "--noreload",
                "0.0.0.0:8000",
            ],
            "django": true
        }
    ]
}

also need to open 8000 port in firewall for inbound:

Comments are closed.