forked from rstacruz/cheatsheets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gitpod: Make Gitpod's automated dev setup automatically run Jekyll an…
…d Parcel (rstacruz#1586)
- Loading branch information
1 parent
1fbacbc
commit e8f302b
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
image: gitpod/workspace-full | ||
|
||
ports: | ||
- port: 4001 | ||
onOpen: open-preview | ||
|
||
tasks: | ||
- init: yarn install && bundle install | ||
command: env PORT=4001 yarn run dev | ||
|
||
github: | ||
# Prebuild the docker image for gitpod - https://www.gitpod.io/docs/46_prebuilds/ | ||
# Prebuild the docker image for gitpod - https://www.gitpod.io/docs/prebuilds/ | ||
prebuilds: | ||
# enable for the master/default branch | ||
master: true | ||
|
||
tasks: | ||
- init: bundle install |