devcontainer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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/debian
  3. {
  4. "name": "Dev",
  5. "dockerComposeFile": ["./docker-compose.yaml"],
  6. "service": "workspace",
  7. "workspaceFolder": "/workspace/anubis",
  8. "postStartCommand": "bash ./.devcontainer/poststart.sh",
  9. "features": {
  10. "ghcr.io/xe/devcontainer-features/ko:1.1.0": {},
  11. "ghcr.io/devcontainers/features/github-cli:1": {}
  12. },
  13. "initializeCommand": "mkdir -p ${localEnv:HOME}${localEnv:USERPROFILE}/.local/share/atuin",
  14. "customizations": {
  15. "vscode": {
  16. "extensions": [
  17. "esbenp.prettier-vscode",
  18. "ms-azuretools.vscode-containers",
  19. "golang.go",
  20. "unifiedjs.vscode-mdx",
  21. "a-h.templ",
  22. "redhat.vscode-yaml",
  23. "streetsidesoftware.code-spell-checker"
  24. ],
  25. "settings": {
  26. "chat.instructionsFilesLocations": {
  27. ".github/copilot-instructions.md": true
  28. }
  29. }
  30. }
  31. }
  32. }