Skip to content

Commit

Permalink
Remove deprecated configuration for Gitpod prebuilds
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsiolis committed Nov 25, 2024
1 parent f33406e commit 6fd5f14
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions content/en/user-guide/integrations/gitpod/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,30 +60,8 @@ ports:
onOpen: ignore
```
If you are using GitHub, you can also use the [Gitpod Prebuilds](https://www.gitpod.io/docs/prebuilds/) feature to automatically build your workspace.
This will allow you to start your workspace faster and with all the dependencies already installed.
Add the following to your `.gitpod.yml` file:
Enabling [Gitpod Prebuilds](https://www.gitpod.io/docs/configure/repositories/prebuilds) can help save time by executing `init` tasks defined in the `.gitpod.yml` ahead of time, starting your workspace faster and with all the dependencies already installed.

```yaml
github:
prebuilds:
# enable for the default branch
master: true
# enable for all branches in this repo
branches: true
# enable for pull requests coming from this repo
pullRequests: true
# enable for pull requests coming from forks
pullRequestsFromForks: true
# add a check to pull requests
addCheck: true
# add a "Review in Gitpod" button as a comment to pull requests
addComment: false
# add a "Review in Gitpod" button to the pull request's description
addBadge: true
```

After adding the configuration, you can start your development & testing by creating [your workspace in Gitpod](https://www.gitpod.io/docs/getting-started/#start-your-first-workspace).
Upon creation, you will be able to see the LocalStack container running in the background (you can use `localstack status` to check the status of the container).

For a simple demonstration, check out the [LocalStack Gitpod demo](https://github.com/Gitpod-Samples/localstack-gitpod-demo) repository.
Expand Down

0 comments on commit 6fd5f14

Please sign in to comment.