aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDH42017-05-27 05:40:22 -0500
committerDH42017-05-27 05:40:22 -0500
commit86c6ac87627365e8ea30f84420c3ac97f0a597ea (patch)
tree74bee816ef8efc2de4c0e7fa99f009a7c9c3a1f9
parent1a8acdbed09cc751d587e99bfc848c29752104e5 (diff)
Removed .vscode directory and updated .gitignore
-rw-r--r--.gitignore3
-rw-r--r--.vscode/launch.json204
2 files changed, 2 insertions, 205 deletions
diff --git a/.gitignore b/.gitignore
index f4d88c1..24ed791 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
__pycache__
settings.ini
-build/* \ No newline at end of file
+build/*
+.vscode/* \ No newline at end of file
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 5b2c335..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,204 +0,0 @@
-{
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Python",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "pythonPath": "${config:python.pythonPath}",
- "program": "${file}",
- "cwd": "${workspaceRoot}",
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput"
- ]
- },
- {
- "name": "PySpark",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "osx": {
- "pythonPath": "${env:SPARK_HOME}/bin/spark-submit"
- },
- "windows": {
- "pythonPath": "${env:SPARK_HOME}/bin/spark-submit.cmd"
- },
- "linux": {
- "pythonPath": "${env:SPARK_HOME}/bin/spark-submit"
- },
- "program": "${file}",
- "cwd": "${workspaceRoot}",
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput"
- ]
- },
- {
- "name": "Python Module",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "pythonPath": "${config:python.pythonPath}",
- "module": "module.name",
- "cwd": "${workspaceRoot}",
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput"
- ]
- },
- {
- "name": "Integrated Terminal/Console",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "pythonPath": "${config:python.pythonPath}",
- "program": "${file}",
- "cwd": "",
- "console": "integratedTerminal",
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit"
- ]
- },
- {
- "name": "External Terminal/Console",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "pythonPath": "${config:python.pythonPath}",
- "program": "${file}",
- "cwd": "",
- "console": "externalTerminal",
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit"
- ]
- },
- {
- "name": "Django",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "pythonPath": "${config:python.pythonPath}",
- "program": "${workspaceRoot}/manage.py",
- "cwd": "${workspaceRoot}",
- "args": [
- "runserver",
- "--noreload"
- ],
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput",
- "DjangoDebugging"
- ]
- },
- {
- "name": "Flask",
- "type": "python",
- "request": "launch",
- "stopOnEntry": false,
- "pythonPath": "${config:python.pythonPath}",
- "program": "fully qualified path fo 'flask' executable. Generally located along with python interpreter",
- "cwd": "${workspaceRoot}",
- "env": {
- "FLASK_APP": "${workspaceRoot}/quickstart/app.py"
- },
- "args": [
- "run",
- "--no-debugger",
- "--no-reload"
- ],
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput"
- ]
- },
- {
- "name": "Flask (old)",
- "type": "python",
- "request": "launch",
- "stopOnEntry": false,
- "pythonPath": "${config:python.pythonPath}",
- "program": "${workspaceRoot}/run.py",
- "cwd": "${workspaceRoot}",
- "args": [],
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput"
- ]
- },
- {
- "name": "Pyramid",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "pythonPath": "${config:python.pythonPath}",
- "cwd": "${workspaceRoot}",
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "args": [
- "${workspaceRoot}/development.ini"
- ],
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput",
- "Pyramid"
- ]
- },
- {
- "name": "Watson",
- "type": "python",
- "request": "launch",
- "stopOnEntry": true,
- "pythonPath": "${config:python.pythonPath}",
- "program": "${workspaceRoot}/console.py",
- "cwd": "${workspaceRoot}",
- "args": [
- "dev",
- "runserver",
- "--noreload=True"
- ],
- "env": {},
- "envFile": "${workspaceRoot}/.env",
- "debugOptions": [
- "WaitOnAbnormalExit",
- "WaitOnNormalExit",
- "RedirectOutput"
- ]
- },
- {
- "name": "Attach (Remote Debug)",
- "type": "python",
- "request": "attach",
- "localRoot": "${workspaceRoot}",
- "remoteRoot": "${workspaceRoot}",
- "port": 3000,
- "secret": "my_secret",
- "host": "localhost"
- }
- ]
-} \ No newline at end of file