Skip to content

Commit a58af2c

Browse files
authored
Merge pull request #107 from alex-dixon/vscode-launch-config
add vscode launch config
2 parents a92c824 + b005d50 commit a58af2c

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "studio:server:dev",
5+
"type": "python",
6+
"request": "launch",
7+
"module": "ell.studio",
8+
"args": [
9+
"--storage-dir",
10+
"${workspaceFolder}/sqlite_example",
11+
"--dev"
12+
],
13+
"justMyCode": false
14+
},
15+
{
16+
"type": "node",
17+
"request": "launch",
18+
"name": "studio:client:dev",
19+
"runtimeExecutable": "npm",
20+
"runtimeArgs": [
21+
"run",
22+
"start:dev"
23+
],
24+
"cwd": "${workspaceFolder}/ell-studio",
25+
"console": "integratedTerminal"
26+
}
27+
]
28+
}

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,10 @@
1818
"**/build": true
1919
},
2020
"typescript.validate.enable": true,
21-
"javascript.validate.enable": true
21+
"javascript.validate.enable": true,
22+
"python.testing.pytestArgs": [
23+
"tests"
24+
],
25+
"python.testing.unittestEnabled": false,
26+
"python.testing.pytestEnabled": true
2227
}

0 commit comments

Comments
 (0)