Skip to content

Commit

Permalink
Merge pull request #107 from alex-dixon/vscode-launch-config
Browse files Browse the repository at this point in the history
add vscode launch config
  • Loading branch information
MadcowD authored Aug 5, 2024
2 parents a92c824 + b005d50 commit a58af2c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"configurations": [
{
"name": "studio:server:dev",
"type": "python",
"request": "launch",
"module": "ell.studio",
"args": [
"--storage-dir",
"${workspaceFolder}/sqlite_example",
"--dev"
],
"justMyCode": false
},
{
"type": "node",
"request": "launch",
"name": "studio:client:dev",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"start:dev"
],
"cwd": "${workspaceFolder}/ell-studio",
"console": "integratedTerminal"
}
]
}
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@
"**/build": true
},
"typescript.validate.enable": true,
"javascript.validate.enable": true
"javascript.validate.enable": true,
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}

0 comments on commit a58af2c

Please sign in to comment.