| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // For format details, see https://aka.ms/devcontainer.json. For config options, see the
- // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
- {
- "name": "GROWI-Dev",
- "dockerComposeFile": ["../compose.yml", "../compose.extend.yml"],
- "service": "app",
- "workspaceFolder": "/workspace/growi",
- "features": {
- "ghcr.io/devcontainers/features/node:1": {
- "version": "24.14.0"
- },
- "ghcr.io/devcontainers/features/github-cli:1": {}
- },
- // Use 'forwardPorts' to make a list of ports inside the container available locally.
- // "forwardPorts": [],
- "initializeCommand": "/bin/bash .devcontainer/pdf-converter/initializeCommand.sh",
- // Use 'postCreateCommand' to run commands after the container is created.
- "postCreateCommand": "/bin/bash ./.devcontainer/app/postCreateCommand.sh",
- // Configure tool-specific properties.
- "customizations": {
- "vscode": {
- "extensions": [
- // AI
- "anthropic.claude-code",
- // linter
- "biomejs.biome",
- "editorconfig.editorconfig",
- "shinnn.stylelint",
- "stylelint.vscode-stylelint",
- // markdown
- "bierner.markdown-mermaid",
- // TypeScript (Native Preview)
- "typescriptteam.native-preview",
- // Test
- "vitest.explorer",
- "ms-playwright.playwright",
- // git/github
- "codeinklingon.git-worktree-menu",
- "github.vscode-pull-request-github",
- "mhutchie.git-graph",
- "eamodio.gitlens",
- "cschleiden.vscode-github-actions",
- // DB
- "cweijan.vscode-database-client2",
- "mongodb.mongodb-vscode",
- // Debug
- "msjsdiag.debugger-for-chrome",
- "firefox-devtools.vscode-firefox-debug"
- ],
- "settings": {
- "terminal.integrated.defaultProfile.linux": "bash"
- }
- },
- },
- // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
- // "remoteUser": "root"
- }
|