You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

devcontainer.json 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "Gitea DevContainer",
  3. "image": "mcr.microsoft.com/devcontainers/go:1.22-bullseye",
  4. "features": {
  5. // installs nodejs into container
  6. "ghcr.io/devcontainers/features/node:1": {
  7. "version":"20"
  8. },
  9. "ghcr.io/devcontainers/features/git-lfs:1.1.0": {},
  10. "ghcr.io/devcontainers-contrib/features/poetry:2": {},
  11. "ghcr.io/devcontainers/features/python:1": {}
  12. },
  13. "customizations": {
  14. "vscode": {
  15. "settings": {},
  16. // same extensions as Gitpod, should match /.gitpod.yml
  17. "extensions": [
  18. "editorconfig.editorconfig",
  19. "dbaeumer.vscode-eslint",
  20. "golang.go",
  21. "stylelint.vscode-stylelint",
  22. "DavidAnson.vscode-markdownlint",
  23. "Vue.volar",
  24. "ms-azuretools.vscode-docker",
  25. "zixuanchen.vitest-explorer",
  26. "qwtel.sqlite-viewer",
  27. "GitHub.vscode-pull-request-github"
  28. ]
  29. }
  30. },
  31. "portsAttributes": {
  32. "3000": {
  33. "label": "Gitea Web",
  34. "onAutoForward": "notify"
  35. }
  36. },
  37. "postCreateCommand": "make deps"
  38. }