Added vs code
This commit is contained in:
parent
f31522dcd9
commit
73e2c5ec10
1
.gitignore
vendored
1
.gitignore
vendored
@ -132,5 +132,4 @@ dmypy.json
|
|||||||
.pyre/
|
.pyre/
|
||||||
|
|
||||||
# IDE
|
# IDE
|
||||||
.vscode/
|
|
||||||
.idea/
|
.idea/
|
||||||
|
62
.vscode/launch.json
vendored
Normal file
62
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
{
|
||||||
|
// 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: Aktuelle Datei",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${file}",
|
||||||
|
"console": "integratedTerminal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CPL: main test",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/cpl_core/src/tests/custom/general/src/general",
|
||||||
|
"program": "main.py",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"args": [
|
||||||
|
"--customer=sh-edraft.de"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"CPL_NAME": "CPL_Dev_Test",
|
||||||
|
"PYTHON_ENVIRONMENT": "development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CPL: console test",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/tests/custom/console",
|
||||||
|
"program": "main.py",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CPL: database test",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/tests/custom/database/src",
|
||||||
|
"program": "main.py",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CPL: CLI",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/",
|
||||||
|
"program": "cpl_cli/main.py",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CPL: CLI Remove",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/",
|
||||||
|
"program": "cpl_cli/main.py",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"workbench.colorCustomizations": {
|
||||||
|
"activityBar.activeBackground": "#fbed80",
|
||||||
|
"activityBar.activeBorder": "#06b9a5",
|
||||||
|
"activityBar.background": "#fbed80",
|
||||||
|
"activityBar.foreground": "#15202b",
|
||||||
|
"activityBar.inactiveForeground": "#15202b99",
|
||||||
|
"activityBarBadge.background": "#06b9a5",
|
||||||
|
"activityBarBadge.foreground": "#15202b",
|
||||||
|
"editorGroup.border": "#fbed80",
|
||||||
|
"panel.border": "#fbed80",
|
||||||
|
"sash.hoverBorder": "#fbed80",
|
||||||
|
"sideBar.border": "#fbed80",
|
||||||
|
"statusBar.background": "#f9e64f",
|
||||||
|
"statusBar.foreground": "#15202b",
|
||||||
|
"statusBarItem.hoverBackground": "#f7df1e",
|
||||||
|
"statusBarItem.remoteBackground": "#f9e64f",
|
||||||
|
"statusBarItem.remoteForeground": "#15202b",
|
||||||
|
"titleBar.activeBackground": "#f9e64f",
|
||||||
|
"titleBar.activeForeground": "#15202b",
|
||||||
|
"titleBar.inactiveBackground": "#f9e64f99",
|
||||||
|
"titleBar.inactiveForeground": "#15202b99"
|
||||||
|
},
|
||||||
|
"peacock.color": "#f9e64f",
|
||||||
|
"python.pythonPath": "cpl-env/bin/python3.9",
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user