Creation du depot
This commit is contained in:
305
.vscode/launch.json
vendored
Normal file
305
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,305 @@
|
||||
{
|
||||
"version": "0.2.4",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "WAPT: install",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"install",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"linux": {
|
||||
"sudo": true
|
||||
},
|
||||
"osx": {
|
||||
"sudo": true
|
||||
},
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WAPT: remove",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"remove",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"linux": {
|
||||
"sudo": true
|
||||
},
|
||||
"osx": {
|
||||
"sudo": true
|
||||
},
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WAPT: uninstall",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"uninstall",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"linux": {
|
||||
"sudo": true
|
||||
},
|
||||
"osx": {
|
||||
"sudo": true
|
||||
},
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WAPT: session-setup",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"session-setup",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WAPT: audit",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"audit",
|
||||
"-f",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"linux": {
|
||||
"sudo": true
|
||||
},
|
||||
"osx": {
|
||||
"sudo": true
|
||||
},
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WAPT: update-package",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"update-package-sources",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WAPT: -i build-upload",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"-i",
|
||||
"--use-gui",
|
||||
"build-upload",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "WAPT: build-package",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "${config:python.wapt-get}",
|
||||
"args": [
|
||||
"build-package",
|
||||
"--no-ide",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: import setup.py",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_import_setup_template.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: import update_package.py",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_import_update_template.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: complete-package",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_complete_control.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: translate-control",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_translate_control.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: unify-control files",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_unify_control.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: duplicate-os-package-code",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_duplicate_os_package_code.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: duplicate update_package.py",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_duplicate_update_package.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: change luti.json",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/change_luti_json.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: import .gitignore",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_import_gitignore.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DEV: quick testing",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"justMyCode": false,
|
||||
"program": "C:/Program Files (x86)/wapt/public/persistent/package-tools/package-template/launch_quick_testing.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${command:python.interpreterPath}",
|
||||
"pythonArgs": [
|
||||
"-I",
|
||||
"-B"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user