1
0
silverbullet/.gitpod.yml

36 lines
652 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: |
deno task build
2022-10-13 13:16:18 +00:00
deno task install
2022-09-24 12:38:58 +00:00
gp sync-done setup
- name: Server watcher
2022-09-24 12:38:58 +00:00
init: |
gp sync-await setup
mkdir pages
command: deno task watch-server -- pages
- name: Web watcher
2022-09-25 00:07:07 +00:00
init: gp sync-await setup
command: deno task watch-web
- name: Plug watcher
2022-09-25 00:07:07 +00:00
init: gp sync-await setup
command: deno task watch-plugs
vscode:
extensions:
- denoland.vscode-deno