File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ # http://gitpod.io/#github.com/gnolang/getting-started-workshop
2+
3+ additionalRepositories :
4+ - url : https://github.com/gnolang/gno
5+ checkoutLocation : gno
6+
7+
8+ tasks :
9+ - name : Gno Shell
10+ init : |
11+ (
12+ set -xe
13+ cd ../gno
14+ echo "install developer tools"
15+ (cd misc/devdeps && make install)
16+ echo "download dependencies"
17+ go mod download
18+ go install ./gnovm/cmd/gno
19+ echo "Deps installed."
20+ )
21+ command : gno --help
22+
23+ - name : Gnoland Node
24+ before : cd ../gno/gno.land/
25+ init : go install ./cmd/gnoland
26+ command : gnoland start
27+
28+ - name : Gnoland Website
29+ before : cd ../gno/gno.land/
30+ init : go install ./cmd/gnoweb
31+ command : gnoweb --bind=0.0.0.0:8888
32+
33+ # - name: faucet
34+ # ...
35+
36+ ports :
37+ - name : gnoweb
38+ description : " the Gno.land web server"
39+ port : 8888
40+ onOpen : open-preview
41+
42+ - name : " gnoland RPC"
43+ description : " the RPC server, managed by tendermint2"
44+ port : 36657
45+ onOpen : notify
46+
47+ github :
48+ prebuilds :
49+ master : true
50+ branches : true
51+ pullRequests : true
52+ pullRequestsFromForks : true
53+ addCheck : true
54+ addComment : true
55+ addBadge : true
You can’t perform that action at this time.
0 commit comments