Skip to content

Commit

Permalink
Merge pull request #527 from Kimoby/improve-services-parallelization
Browse files Browse the repository at this point in the history
Improve services parallelization
  • Loading branch information
guillaume-chevalier committed Jul 22, 2022
2 parents a2404c5 + 81ea7e3 commit c355500
Show file tree
Hide file tree
Showing 37 changed files with 3,180 additions and 3,105 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ venv.bak/

# IDEs
.idea
.vscode
.vscode/settings.json
.style.yapf
*-py.js
*pmap.yml
Expand Down
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File with /Neuraxle workdir",
"type": "python",
"justMyCode": false,
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${cwd}"
},
"redirectOutput": true,
}
]
}
Loading

0 comments on commit c355500

Please sign in to comment.