aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorMartin Ashby <martin@martin-laptop.lan>2018-05-15 22:12:09 +0100
committerMartin Ashby <martin@martin-laptop.lan>2018-05-15 22:12:09 +0100
commit57e5ea1f424ea2567e10c3945d9273a92a547332 (patch)
tree8184c2c8bab04c1a15b28fcfa2c7b255223a98d5 /.vscode
downloadunicornpaint-57e5ea1f424ea2567e10c3945d9273a92a547332.tar.gz
unicornpaint-57e5ea1f424ea2567e10c3945d9273a92a547332.tar.bz2
unicornpaint-57e5ea1f424ea2567e10c3945d9273a92a547332.tar.xz
unicornpaint-57e5ea1f424ea2567e10c3945d9273a92a547332.zip
Basic should be working
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json116
-rw-r--r--.vscode/settings.json3
2 files changed, 119 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..8795aee
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,116 @@
+{
+ // 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: Current File",
+ "type": "python",
+ "request": "launch",
+ "program": "${file}"z
+ },
+ {
+ "name": "Python: Attach",
+ "type": "python",
+ "request": "attach",
+ "localRoot": "${workspaceFolder}",
+ "remoteRoot": "${workspaceFolder}",
+ "port": 3000,
+ "secret": "my_secret",
+ "host": "localhost"
+ },
+ {
+ "name": "Python: Terminal (integrated)",
+ "type": "python",
+ "request": "launch",
+ "program": "${file}",
+ "console": "integratedTerminal"
+ },
+ {
+ "name": "Python: Terminal (external)",
+ "type": "python",
+ "request": "launch",
+ "program": "${file}",
+ "console": "externalTerminal"
+ },
+ {
+ "name": "Python: Django",
+ "type": "python",
+ "request": "launch",
+ "program": "${workspaceFolder}/manage.py",
+ "args": [
+ "runserver",
+ "--noreload",
+ "--nothreading"
+ ],
+ "debugOptions": [
+ "RedirectOutput",
+ "Django"
+ ]
+ },
+ {
+ "name": "Python: Flask (0.11.x or later)",
+ "type": "python",
+ "request": "launch",
+ "module": "flask",
+ "env": {
+ "FLASK_APP": "${workspaceFolder}/app.py"
+ },
+ "args": [
+ "run",
+ "--no-debugger",
+ "--no-reload"
+ ]
+ },
+ {
+ "name": "Python: Module",
+ "type": "python",
+ "request": "launch",
+ "module": "module.name"
+ },
+ {
+ "name": "Python: Pyramid",
+ "type": "python",
+ "request": "launch",
+ "args": [
+ "${workspaceFolder}/development.ini"
+ ],
+ "debugOptions": [
+ "RedirectOutput",
+ "Pyramid"
+ ]
+ },
+ {
+ "name": "Python: Watson",
+ "type": "python",
+ "request": "launch",
+ "program": "${workspaceFolder}/console.py",
+ "args": [
+ "dev",
+ "runserver",
+ "--noreload=True"
+ ]
+ },
+ {
+ "name": "Python: All debug Options",
+ "type": "python",
+ "request": "launch",
+ "pythonPath": "${config:python.pythonPath}",
+ "program": "${file}",
+ "module": "module.name",
+ "env": {
+ "VAR1": "1",
+ "VAR2": "2"
+ },
+ "envFile": "${workspaceFolder}/.env",
+ "args": [
+ "arg1",
+ "arg2"
+ ],
+ "debugOptions": [
+ "RedirectOutput"
+ ]
+ }
+ ]
+} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..7e12c95
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "python.pythonPath": "python3"
+} \ No newline at end of file