silverbullet/.gitpod.yml

32 lines
591 B
YAML

image:
file: .gitpod.Dockerfile
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
init: gp sync-await setup
command: npm run watch
- name: Build plugins
init: gp sync-await setup
command: npm run plugs