Skip to content

Commit 7ba6c73

Browse files
committed
[NEW] Adiciona .vscode/launch.json
1 parent 0eaef0c commit 7ba6c73

File tree

1 file changed

+0
-178
lines changed

1 file changed

+0
-178
lines changed

.vscode/launch.json

-178
Original file line numberDiff line numberDiff line change
@@ -16,184 +16,6 @@
1616
"${workspaceFolder}/out/**/*.js"
1717
],
1818
// "preLaunchTask": "npm"
19-
},
20-
{
21-
"name": "Python",
22-
"type": "python",
23-
"request": "launch",
24-
"stopOnEntry": true,
25-
"pythonPath": "${config:python.pythonPath}",
26-
"program": "${file}",
27-
"cwd": "${workspaceFolder}",
28-
"env": {},
29-
"envFile": "${workspaceFolder}/.env",
30-
"debugOptions": [
31-
"RedirectOutput"
32-
]
33-
},
34-
{
35-
"name": "Python: Attach",
36-
"type": "python",
37-
"request": "attach",
38-
"localRoot": "${workspaceFolder}",
39-
"remoteRoot": "${workspaceFolder}",
40-
"port": 3000,
41-
"secret": "my_secret",
42-
"host": "localhost"
43-
},
44-
{
45-
"name": "Python: Terminal (integrated)",
46-
"type": "python",
47-
"request": "launch",
48-
"stopOnEntry": true,
49-
"pythonPath": "${config:python.pythonPath}",
50-
"program": "${file}",
51-
"cwd": "",
52-
"console": "integratedTerminal",
53-
"env": {},
54-
"envFile": "${workspaceFolder}/.env",
55-
"debugOptions": []
56-
},
57-
{
58-
"name": "Python: Terminal (external)",
59-
"type": "python",
60-
"request": "launch",
61-
"stopOnEntry": true,
62-
"pythonPath": "${config:python.pythonPath}",
63-
"program": "${file}",
64-
"cwd": "",
65-
"console": "externalTerminal",
66-
"env": {},
67-
"envFile": "${workspaceFolder}/.env",
68-
"debugOptions": []
69-
},
70-
{
71-
"name": "Python: Django",
72-
"type": "python",
73-
"request": "launch",
74-
"stopOnEntry": true,
75-
"pythonPath": "${config:python.pythonPath}",
76-
"program": "${workspaceFolder}/manage.py",
77-
"cwd": "${workspaceFolder}",
78-
"args": [
79-
"runserver",
80-
"--noreload",
81-
"--nothreading"
82-
],
83-
"env": {},
84-
"envFile": "${workspaceFolder}/.env",
85-
"debugOptions": [
86-
"RedirectOutput",
87-
"DjangoDebugging"
88-
]
89-
},
90-
{
91-
"name": "Python: Flask (0.11.x or later)",
92-
"type": "python",
93-
"request": "launch",
94-
"stopOnEntry": false,
95-
"pythonPath": "${config:python.pythonPath}",
96-
"program": "fully qualified path fo 'flask' executable. Generally located along with python interpreter",
97-
"cwd": "${workspaceFolder}",
98-
"env": {
99-
"FLASK_APP": "${workspaceFolder}/quickstart/app.py"
100-
},
101-
"args": [
102-
"run",
103-
"--no-debugger",
104-
"--no-reload"
105-
],
106-
"envFile": "${workspaceFolder}/.env",
107-
"debugOptions": [
108-
"RedirectOutput"
109-
]
110-
},
111-
{
112-
"name": "Python: Flask (0.10.x or earlier)",
113-
"type": "python",
114-
"request": "launch",
115-
"stopOnEntry": false,
116-
"pythonPath": "${config:python.pythonPath}",
117-
"program": "${workspaceFolder}/run.py",
118-
"cwd": "${workspaceFolder}",
119-
"args": [],
120-
"env": {},
121-
"envFile": "${workspaceFolder}/.env",
122-
"debugOptions": [
123-
"RedirectOutput"
124-
]
125-
},
126-
{
127-
"name": "Python: PySpark",
128-
"type": "python",
129-
"request": "launch",
130-
"stopOnEntry": true,
131-
"osx": {
132-
"pythonPath": "${env:SPARK_HOME}/bin/spark-submit"
133-
},
134-
"windows": {
135-
"pythonPath": "${env:SPARK_HOME}/bin/spark-submit.cmd"
136-
},
137-
"linux": {
138-
"pythonPath": "${env:SPARK_HOME}/bin/spark-submit"
139-
},
140-
"program": "${file}",
141-
"cwd": "${workspaceFolder}",
142-
"env": {},
143-
"envFile": "${workspaceFolder}/.env",
144-
"debugOptions": [
145-
"RedirectOutput"
146-
]
147-
},
148-
{
149-
"name": "Python: Module",
150-
"type": "python",
151-
"request": "launch",
152-
"stopOnEntry": true,
153-
"pythonPath": "${config:python.pythonPath}",
154-
"module": "module.name",
155-
"cwd": "${workspaceFolder}",
156-
"env": {},
157-
"envFile": "${workspaceFolder}/.env",
158-
"debugOptions": [
159-
"RedirectOutput"
160-
]
161-
},
162-
{
163-
"name": "Python: Pyramid",
164-
"type": "python",
165-
"request": "launch",
166-
"stopOnEntry": true,
167-
"pythonPath": "${config:python.pythonPath}",
168-
"cwd": "${workspaceFolder}",
169-
"env": {},
170-
"envFile": "${workspaceFolder}/.env",
171-
"args": [
172-
"${workspaceFolder}/development.ini"
173-
],
174-
"debugOptions": [
175-
"RedirectOutput",
176-
"Pyramid"
177-
]
178-
},
179-
{
180-
"name": "Python: Watson",
181-
"type": "python",
182-
"request": "launch",
183-
"stopOnEntry": true,
184-
"pythonPath": "${config:python.pythonPath}",
185-
"program": "${workspaceFolder}/console.py",
186-
"cwd": "${workspaceFolder}",
187-
"args": [
188-
"dev",
189-
"runserver",
190-
"--noreload=True"
191-
],
192-
"env": {},
193-
"envFile": "${workspaceFolder}/.env",
194-
"debugOptions": [
195-
"RedirectOutput"
196-
]
19719
}
19820
]
19921
}

0 commit comments

Comments
 (0)