1
0
Fork 0
Netbox-DNAC-Integration/launch.json

19 lines
586 B
JSON
Raw Normal View History

2024-02-15 17:47:01 +00:00
{
// 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": "runserver",
"type": "python",
"request": "launch",
"program": "/opt/netbox/netbox/manage.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"runserver", "0.0.0.0:8000"
]
}
]
}