Skip to content

Commit c355500

Browse files
Merge pull request #527 from Kimoby/improve-services-parallelization
Improve services parallelization
2 parents a2404c5 + 81ea7e3 commit c355500

37 files changed

+3180
-3105
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ venv.bak/
107107

108108
# IDEs
109109
.idea
110-
.vscode
110+
.vscode/settings.json
111111
.style.yapf
112112
*-py.js
113113
*pmap.yml

.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Python: Current File with /Neuraxle workdir",
6+
"type": "python",
7+
"justMyCode": false,
8+
"request": "launch",
9+
"program": "${file}",
10+
"console": "integratedTerminal",
11+
"cwd": "${workspaceFolder}",
12+
"env": {
13+
"PYTHONPATH": "${cwd}"
14+
},
15+
"redirectOutput": true,
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)