gitpod: Make Gitpod's automated dev setup automatically run Jekyll and Parcel (#1586)
This commit is contained in:
parent
1fbacbc9f8
commit
e8f302b290
13
.gitpod.yml
13
.gitpod.yml
|
@ -1,10 +1,15 @@
|
||||||
image: gitpod/workspace-full
|
image: gitpod/workspace-full
|
||||||
|
|
||||||
|
ports:
|
||||||
|
- port: 4001
|
||||||
|
onOpen: open-preview
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- init: yarn install && bundle install
|
||||||
|
command: env PORT=4001 yarn run dev
|
||||||
|
|
||||||
github:
|
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:
|
prebuilds:
|
||||||
# enable for the master/default branch
|
# enable for the master/default branch
|
||||||
master: true
|
master: true
|
||||||
|
|
||||||
tasks:
|
|
||||||
- init: bundle install
|
|
Loading…
Reference in New Issue