devcontainer.json 252 B

123456789
  1. {
  2. "name": "Hoppscotch",
  3. "image": "mcr.microsoft.com/devcontainers/typescript-node:18",
  4. "forwardPorts": [3000],
  5. "features": {
  6. "ghcr.io/NicoVIII/devcontainer-features/pnpm:1": {}
  7. },
  8. "postCreateCommand": "cp .env.example .env && pnpm i"
  9. }