Skip to content

Commit 5faa26b

Browse files
authored
feat: add initial gitpod file (#1)
1 parent 38371a5 commit 5faa26b

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

.gitpod.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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

0 commit comments

Comments
 (0)