forked from gnolang/gno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
51 lines (44 loc) · 1.04 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
# http://gitpod.io/#github.com/gnolang/gno
tasks:
- name: Gno Shell
before: cd ./examples/
init: |
(
set -xe
cd ..
echo "install developer tools"
(cd misc/devdeps && make install)
echo "download dependencies"
go mod download
go install ./gnovm/cmd/gno
echo "Deps installed."
)
command: gno --help
- name: Gnoland Node
before: cd ./gno.land/
init: go install ./cmd/gnoland
command: gnoland start
- name: Gnoland Website
before: cd ./gno.land/
init: go install ./cmd/gnoweb
command: gnoweb --bind=0.0.0.0:8888
#- 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: 26657
onOpen: notify
github:
prebuilds:
master: true
branches: false
pullRequests: false
pullRequestsFromForks: false
addCheck: false
addComment: false
addBadge: false