Skip to content

Instantly share code, notes, and snippets.

@amigus
Created April 2, 2021 19:57
Show Gist options
  • Save amigus/42055339aa78c0bfbb6d54fe3f8c166e to your computer and use it in GitHub Desktop.
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
{
// 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