mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 08:26:22 +02:00
added devcontainer file
This commit is contained in:
parent
c97dec49af
commit
65b87dd8b0
1 changed files with 30 additions and 0 deletions
30
.devcontainer/devcontainer.json
Normal file
30
.devcontainer/devcontainer.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"name": "Row Boat Labs Dev Container Setup",
|
||||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-22.04",
|
||||
"settings": {
|
||||
"terminal.integrated.defaultProfile.linux": "bash"
|
||||
},
|
||||
"initializeCommand": "make ensure-dirs && make set-env",
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"ms-azuretools.vscode-docker",
|
||||
"ms-vscode.makefile-tools"
|
||||
]
|
||||
}
|
||||
},
|
||||
"remoteEnv": {
|
||||
"USE_RAG": "true",
|
||||
"USE_RAG_UPLOADS": "true",
|
||||
"USE_KLAVIS_TOOLS": "true",
|
||||
"USE_COMPOSIO_TOOLS": "${localEnv:COMPOSIO_API_KEY:false}"
|
||||
},
|
||||
"mounts": [
|
||||
"type=bind,source=${localWorkspaceFolder}/data/uploads,target=/workspace/data/uploads,consistency=cached",
|
||||
"type=bind,source=${localWorkspaceFolder}/data/qdrant,target=/workspace/data/qdrant,consistency=cached",
|
||||
"type=bind,source=${localWorkspaceFolder}/data/mongo,target=/workspace/data/mongo,consistency=cached"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue