| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // 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": "20.18.3"
- }
- },
- // 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": [
- "dbaeumer.vscode-eslint",
- "biomejs.biome",
- "mhutchie.git-graph",
- "eamodio.gitlens",
- "github.vscode-pull-request-github",
- "cschleiden.vscode-github-actions",
- "cweijan.vscode-database-client2",
- "mongodb.mongodb-vscode",
- "msjsdiag.debugger-for-chrome",
- "firefox-devtools.vscode-firefox-debug",
- "editorconfig.editorconfig",
- "shinnn.stylelint",
- "stylelint.vscode-stylelint",
- "vitest.explorer",
- "ms-playwright.playwright"
- ],
- "settings": {
- "terminal.integrated.defaultProfile.linux": "bash"
- }
- },
- },
- // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
- // "remoteUser": "root"
- }
|