1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-15 16:05:03 +00:00
Files
browser/.devcontainer/devcontainer.json

42 lines
957 B
JSON

{
"name": "Bitwarden Clients",
"dockerComposeFile": "docker-compose.yml",
"service": "bitwarden_clients",
"workspaceFolder": "/workspace",
"features": {
"ghcr.io/devcontainers/features/rust:1": {}
},
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"angular.ng-template",
"orta.vscode-jest",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"nrwl.angular-console",
"bradlc.vscode-tailwindcss"
]
}
},
"postCreateCommand": "bash .devcontainer/postCreateCommand.sh",
"forwardPorts": [8080, 8081, 6006],
"portsAttributes": {
"default": {
"onAutoForward": "ignore"
},
"8080": {
"label": "Web Vault",
"onAutoForward": "notify"
},
"8081": {
"label": "Web Vault (Self-hosted)",
"onAutoForward": "notify"
},
"6006": {
"label": "Storybook",
"onAutoForward": "notify"
}
}
}