summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
blob: 6b8edf60573c1ae6c38b9d58945a3901b9999694 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "name": "Contribute to Astro",
  "build": {
    "dockerfile": "Dockerfile"
  },

  "features": {
    "ghcr.io/devcontainers/features/desktop-lite:1": {}
  },

  "postCreateCommand": "pnpm install && pnpm run build",

  "waitFor": "postCreateCommand",

  "postAttachCommand": {
    "Astro tests": "pnpm run test"
  },

  "customizations": {
    "codespaces": {
      "openFiles": ["README.md", "CONTRIBUTING.md"]
    },
    "vscode": {
      "extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
    }
  }
}