devcontainer.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
  3. {
  4. "name": "GROWI-Dev",
  5. "dockerComposeFile": ["../compose.yml", "../compose.extend.yml"],
  6. "service": "app",
  7. "workspaceFolder": "/workspace/growi",
  8. "features": {
  9. "ghcr.io/devcontainers/features/node:1": {
  10. "version": "24.14.0"
  11. },
  12. "ghcr.io/devcontainers/features/github-cli:1": {}
  13. },
  14. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  15. // "forwardPorts": [],
  16. "initializeCommand": "/bin/bash .devcontainer/pdf-converter/initializeCommand.sh",
  17. // Use 'postCreateCommand' to run commands after the container is created.
  18. "postCreateCommand": "/bin/bash ./.devcontainer/app/postCreateCommand.sh",
  19. // Configure tool-specific properties.
  20. "customizations": {
  21. "vscode": {
  22. "extensions": [
  23. // AI
  24. "anthropic.claude-code",
  25. // linter
  26. "biomejs.biome",
  27. "editorconfig.editorconfig",
  28. "shinnn.stylelint",
  29. "stylelint.vscode-stylelint",
  30. // markdown
  31. "bierner.markdown-mermaid",
  32. // TypeScript (Native Preview)
  33. "typescriptteam.native-preview",
  34. // Test
  35. "vitest.explorer",
  36. "ms-playwright.playwright",
  37. // git/github
  38. "codeinklingon.git-worktree-menu",
  39. "github.vscode-pull-request-github",
  40. "mhutchie.git-graph",
  41. "eamodio.gitlens",
  42. "cschleiden.vscode-github-actions",
  43. // DB
  44. "cweijan.vscode-database-client2",
  45. "mongodb.mongodb-vscode",
  46. // Debug
  47. "msjsdiag.debugger-for-chrome",
  48. "firefox-devtools.vscode-firefox-debug"
  49. ],
  50. "settings": {
  51. "terminal.integrated.defaultProfile.linux": "bash"
  52. }
  53. },
  54. },
  55. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  56. // "remoteUser": "root"
  57. }