astro/.gitpod.yml
Maina Wycliffe f2989ec73b
Add a Github Codespace Config based on gitpod dockerfile (#4185)
* Add a codespace config based on gitpod dockerfile

This will ensure contributors using Github Codespaces also have to
correct environemnt setup, with all packages installed.

* chore: rename Dockerfile

Co-authored-by: Nate Moore <nate@astro.build>
2022-08-08 12:22:32 -05:00

34 lines
1 KiB
YAML

---
image:
file: .Dockerfile
# Commands to start on workspace startup
tasks:
- init: |
pnpm install
pnpm run build
command: |
.gitpod/gitpod-setup.sh
vscode:
extensions:
- astro-build.astro-vscode
- esbenp.prettier-vscode
- dbaeumer.vscode-eslint
ports:
- port: 3000
onOpen: open-preview
github:
prebuilds:
# enable for the master/default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: true
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
addComment: true
# add a "Review in Gitpod" button to pull requests (defaults to false)
addBadge: false
# add a label once the prebuild is ready to pull requests (defaults to false)
addLabel: prebuilt-in-gitpod