mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-30 07:30:05 +00:00
57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainer.schema.json",
|
||
|
|
"name": "Zitadel Devcontainer",
|
||
|
|
"dockerComposeFile": "docker-compose.yaml",
|
||
|
|
"service": "devcontainer",
|
||
|
|
"runServices": [
|
||
|
|
"devcontainer"
|
||
|
|
],
|
||
|
|
"workspaceFolder": "/workspaces/zitadel",
|
||
|
|
"forwardPorts": [
|
||
|
|
3000,
|
||
|
|
4200,
|
||
|
|
8080,
|
||
|
|
3100
|
||
|
|
],
|
||
|
|
"portsAttributes": {
|
||
|
|
"3000": {
|
||
|
|
"label": "Login",
|
||
|
|
"onAutoForward": "notify"
|
||
|
|
},
|
||
|
|
"4200": {
|
||
|
|
"label": "Console",
|
||
|
|
"onAutoForward": "notify"
|
||
|
|
},
|
||
|
|
"8080": {
|
||
|
|
"label": "API",
|
||
|
|
"onAutoForward": "notify"
|
||
|
|
},
|
||
|
|
"3100": {
|
||
|
|
"label": "Docs",
|
||
|
|
"onAutoForward": "notify"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"features": {
|
||
|
|
"ghcr.io/devcontainers/features/go:1": {
|
||
|
|
"version": "1.24"
|
||
|
|
},
|
||
|
|
"ghcr.io/devcontainers/features/docker-outside-of-docker": {},
|
||
|
|
"ghcr.io/schlich/devcontainer-features/cypress:1": {
|
||
|
|
"version": "14"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"containerEnv": {
|
||
|
|
"DEVCONTAINER_LOCAL_WORKSPACE_ROOT": "${localWorkspaceFolder}"
|
||
|
|
},
|
||
|
|
"customizations": {
|
||
|
|
"vscode": {
|
||
|
|
"extensions": [
|
||
|
|
"golang.Go",
|
||
|
|
"Angular.ng-template",
|
||
|
|
"dbaeumer.vscode-eslint",
|
||
|
|
"esbenp.prettier-vscode",
|
||
|
|
"nrwl.angular-console"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|