Skip to content

Commit 8151a88

Browse files
committed
chore(dev): add vscode settings
1 parent 2735ca0 commit 8151a88

File tree

10 files changed

+159
-1
lines changed

10 files changed

+159
-1
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,5 +209,13 @@ mise.local.toml
209209
# Ruff
210210
.ruff_cache/
211211

212+
#Helm-ls
213+
.helm_ls_cache
214+
212215
# VSCode
213-
.vscode/
216+
.vscode/*
217+
!.vscode/settings.json
218+
!.vscode/tasks.json
219+
!.vscode/launch.json
220+
!.vscode/extensions.json
221+
!.vscode/*.code-snippets

agents/chat/.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "agent-chat",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/src/chat/agent.py",
12+
"console": "integratedTerminal"
13+
}
14+
]
15+
}

agents/form/.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "agent-form",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/src/form/agent.py",
12+
"console": "integratedTerminal"
13+
}
14+
]
15+
}

agents/rag/.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "agent-form",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/src/rag/agent.py",
12+
"console": "integratedTerminal"
13+
}
14+
]
15+
}

agentstack.code-workspace

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "root",
5+
"path": "."
6+
},
7+
{
8+
"name": "agentstack-server",
9+
"path": "apps/agentstack-server"
10+
},
11+
{
12+
"name": "agentstack-sdk-py",
13+
"path": "apps/agentstack-sdk-py"
14+
},
15+
{
16+
"name": "agentstack-cli",
17+
"path": "apps/agentstack-cli"
18+
},
19+
{
20+
"name": "agent-chat",
21+
"path": "agents/chat"
22+
},
23+
{
24+
"name": "agent-form",
25+
"path": "agents/form"
26+
},
27+
{
28+
"name": "agent-rag",
29+
"path": "agents/rag"
30+
},
31+
{
32+
"name": "helm",
33+
"path": "helm"
34+
}
35+
],
36+
"settings": {
37+
"python.analysis.extraPaths": [
38+
"${workspaceFolder}/apps/agentstack-sdk-py/src"
39+
],
40+
"python.analysis.diagnosticMode": "openFilesOnly",
41+
"python.analysis.typeCheckingMode": "basic",
42+
"files.associations": {
43+
"**/helm/templates/**/*.yaml": "helm",
44+
"**/helm/templates/**/*.tpl": "helm"
45+
},
46+
"basedpyright.analysis.diagnosticMode": "openFilesOnly"
47+
},
48+
"extensions": {
49+
"recommendations": [
50+
"detachhead.basedpyright",
51+
"charliermarsh.ruff"
52+
]
53+
}
54+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3+
"python.analysis.typeCheckingMode": "basic",
4+
"python.analysis.diagnosticMode": "openFilesOnly"
5+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3+
"python.analysis.typeCheckingMode": "basic",
4+
"python.analysis.diagnosticMode": "openFilesOnly",
5+
"python.testing.pytestArgs": [
6+
"tests"
7+
],
8+
"python.testing.unittestEnabled": false,
9+
"python.testing.pytestEnabled": true
10+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "agentstack-server",
6+
"type": "debugpy",
7+
"request": "launch",
8+
"module": "uvicorn",
9+
"args": [
10+
"agentstack_server.application:app",
11+
"--host=0.0.0.0",
12+
"--port=18333",
13+
"--timeout-keep-alive=60",
14+
"--timeout-graceful-shutdown=2"
15+
],
16+
}
17+
]
18+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3+
"python.analysis.typeCheckingMode": "basic",
4+
"python.analysis.diagnosticMode": "openFilesOnly",
5+
"python.analysis.indexing": true,
6+
"python.analysis.autoImportUserSymbols": true,
7+
"python.analysis.autoImportCompletions": true,
8+
"python.testing.pytestArgs": [
9+
"tests"
10+
],
11+
"python.testing.unittestEnabled": false,
12+
"python.testing.pytestEnabled": true,
13+
}

helm/.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"helm-ls.helm-ls"
4+
]
5+
}

0 commit comments

Comments
 (0)