-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitpod.yml
58 lines (48 loc) · 1.16 KB
/
.gitpod.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# http://gitpod.io/#github.com/gnolang/getting-started-workshop
additionalRepositories:
- url: https://github.com/gnolang/gno
checkoutLocation: gno
tasks:
- name: Gnoland
before: cd ../gno/gno.land/
init: go install ./cmd/gnoland
command: gnoland start
- name: Gnoweb
before: cd ../gno/gno.land/
init: go install ./cmd/gnoweb
command: gnoweb --bind=0.0.0.0:8888
- name: Deps
before: cd ../gno/misc/devdeps
init: |
make install
echo "Deps installed."
- name: Gno CLI
init: |
go mod download
go install \
github.com/gnolang/gno/gno.land/cmd/gnokey \
github.com/gnolang/gno/gnovm/cmd/gno
command: gno --help
#- name: faucet
# ...
ports:
- name: gnoweb
description: "the Gno.land web server"
port: 8888
onOpen: open-preview
- name: "gnoland RPC"
description: "the RPC server, managed by tendermint2"
port: 36657
onOpen: notify
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: true
addBadge: true
vscode:
extensions:
- harry-hov.gno