1
0
silverbullet/.gitpod.yml

32 lines
591 B
YAML
Raw Normal View History

2022-09-25 00:07:07 +00:00
image:
file: .gitpod.Dockerfile
2022-09-24 12:38:58 +00:00
ports:
- port: 3000
name: Silverbullet
onOpen: open-browser
visibility: public
github:
prebuilds:
master: true
pullRequests: true
tasks:
- name: Setup
init: |
npm install
npm run clean-build
gp sync-done setup
- name: Run Silverbullet server
init: |
gp sync-await setup
mkdir pages
command: npm run server -- ./pages
- name: Run ParcelJS
2022-09-25 00:07:07 +00:00
init: gp sync-await setup
2022-09-24 12:38:58 +00:00
command: npm run watch
- name: Build plugins
2022-09-25 00:07:07 +00:00
init: gp sync-await setup
2022-09-24 12:38:58 +00:00
command: npm run plugs