Files
zitadel/.devcontainer/base/devcontainer.json

29 lines
666 B
JSON
Raw Normal View History

{
2025-07-22 01:23:40 +02:00
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainer.schema.json",
"name": "devcontainer",
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
2025-07-21 17:13:29 +00:00
"workspaceFolder": "/workspaces",
"features": {
"ghcr.io/devcontainers/features/go:1": {
2025-07-18 17:20:57 +02:00
"version": "1.24"
},
"ghcr.io/guiyomh/features/golangci-lint:0": {},
2025-07-22 14:13:44 +02:00
"ghcr.io/jungaretti/features/make:1": {}
},
"forwardPorts": [
3000,
2025-07-21 17:13:29 +00:00
3001,
4200,
8080
],
2025-07-22 16:56:13 +02:00
"onCreateCommand": "pnpm install -g sass@1.64.1",
2025-07-21 17:13:29 +00:00
"customizations": {
"jetbrains": {
"settings": {
"com.intellij:app:HttpConfigurable.use_proxy_pac": true
}
}
}
}