Skip to content

Commit

Permalink
Added examples of frequently used arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
to-bar committed Oct 22, 2019
1 parent a7d8471 commit 7d50fa2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions core/src/epicli/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,21 @@
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/cli/epicli.py",
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}",
"pythonPath": "${config:python.pythonPath}",
"env": { "PYTHONPATH": "${workspaceFolder}" },
"console": "integratedTerminal",
"args": ["apply", "-f", "${workspaceFolder}/PATH_TO_YOUR_DATA_YAML"]
"args": ["apply", "-f", "${workspaceFolder}/clusters/YOUR_DATA_YAML.yml"]
// "args": ["apply", "-f", "${workspaceFolder}/clusters/YOUR_DATA_YAML.yml", "--offline-requirements", "${workspaceFolder}/downloads/epirepo"]
// "args": ["delete", "-b", "${workspaceFolder}/clusters/build/dir"]
// "args": ["init", "-p", "PROVIDER", "-n", "NAME"]
},
{
"name": "python unit tests",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/run-tests.py",
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}",
"pythonPath": "${config:python.pythonPath}",
"env": { "PYTHONPATH": "${workspaceFolder}" },
"console": "integratedTerminal",
Expand All @@ -31,7 +34,7 @@
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/run-tests.py",
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}",
"pythonPath": "${config:python.pythonPath}",
"env": { "PYTHONPATH": "${workspaceFolder}" },
"console": "integratedTerminal",
Expand Down

0 comments on commit 7d50fa2

Please sign in to comment.