Created
April 2, 2021 19:57
-
-
Save amigus/42055339aa78c0bfbb6d54fe3f8c166e to your computer and use it in GitHub Desktop.
VSCode launch.json file to launch Ansible AWX running in it's container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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: AWX", | |
"type": "python", | |
"request": "launch", | |
"python": "/usr/bin/awx-python", | |
"program": "/usr/local/bin/awx-manage", | |
"args": [ | |
"runserver_plus", | |
"--nothreading", | |
"--noreload", | |
"--nopin", | |
"0.0.0.0:8000" | |
], | |
"django": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment