Skip to content

Commit 21f0960

Browse files
committed
feat: config container
1 parent 1271ae1 commit 21f0960

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.devcontainer/devcontainer.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,24 @@
33
{
44
"name": "astra",
55
"image": "agoraio/astra_agents_build:0.1.0",
6-
"extensions": [
7-
"golang.go"
8-
],
6+
7+
"customizations": {
8+
"vscode": {
9+
"extensions": ["golang.go"]
10+
}
11+
},
12+
13+
"workspaceMount": "source=${localWorkspaceFolder},target=/app,type=bind",
14+
"workspaceFolder": "/app",
915

1016
// Use 'forwardPorts' to make a list of ports inside the container available locally.
11-
"forwardPorts": [8080],
17+
"forwardPorts": [8080]
1218

1319
// Features to add to the dev container. More info: https://containers.dev/features.
1420
// "features": {},
1521

1622
// Uncomment the next line to run commands after the container is created.
17-
"postCreateCommand": "ln -s /workspaces/ASTRA.ai /app && cd /app"
23+
// "postCreateCommand": ""
1824

1925
// Configure tool-specific properties.
2026
// "customizations": {},

0 commit comments

Comments
 (0)