Update vscode workspce (#199)

- add recommended extensions
- set python interpreter path for all python projects to be venv/bin/python
- update project structure in workspace
- rename project file from gatewa -> archgw
This commit is contained in:
Adil Hafeez 2024-10-18 12:57:58 -07:00 committed by GitHub
parent c6ba28dfcc
commit 28421353fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 22 additions and 16 deletions

42
archgw.code-workspace Normal file
View file

@ -0,0 +1,42 @@
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "crates",
"path": "crates"
},
{
"name": "archgw_cli",
"path": "arch/tools"
},
{
"name": "model_server",
"path": "model_server"
},
{
"name": "chatbot_ui",
"path": "chatbot_ui"
},
{
"name": "demos/function_calling",
"path": "./demos/function_calling",
},
{
"name": "demos/insurance_agent",
"path": "./demos/insurance_agent",
},
],
"settings": {
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.debugpy",
"rust-lang.rust-analyzer",
"humao.rest-client"
]
}
}