forked from silverbulletmd/silverbullet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
36 lines (31 loc) · 649 Bytes
/
.gitpod.yml
File metadata and controls
36 lines (31 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
image:
file: .gitpod.Dockerfile
ports:
- port: 3000
name: Silverbullet
onOpen: open-browser
visibility: public
github:
prebuilds:
master: true
pullRequests: true
tasks:
- name: Setup
init: |
deno task build
deno task install
gp sync-done setup
- name: Server watcher
init: |
gp sync-await setup
mkdir pages
command: deno task watch-server pages
- name: Web watcher
init: gp sync-await setup
command: deno task watch-web
- name: Plug watcher
init: gp sync-await setup
command: deno task watch-plugs
vscode:
extensions:
- denoland.vscode-deno