Skip to content

Commit ca39592

Browse files
authored
chore: fix and improve gitpod config (#8)
* chore: fix and improve gitpod config * Update .gitpod.yml
1 parent 29cd025 commit ca39592

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

.gitpod.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,28 @@ additionalRepositories:
55
checkoutLocation: gno
66

77
tasks:
8-
- name: Gno Shell
8+
- name: Gno CLI
99
init: |
10-
(
11-
set -xe
12-
cd ../gno
13-
echo "install developer tools"
14-
(cd misc/devdeps && make install)
15-
echo "download dependencies"
1610
go mod download
17-
# using go.mod's version of gno
1811
go install github.com/gnolang/gno/gnovm/cmd/gno
19-
echo "Deps installed."
20-
)
2112
command: gno --help
2213

23-
- name: Gnoland Node
14+
- name: Gnoland
2415
before: cd ../gno/gno.land/
2516
init: go install ./cmd/gnoland
2617
command: gnoland start
2718

28-
- name: Gnoland Website
19+
- name: Gnoweb
2920
before: cd ../gno/gno.land/
3021
init: go install ./cmd/gnoweb
3122
command: gnoweb --bind=0.0.0.0:8888
3223

24+
- name: Deps
25+
before: cd ../gno/misc/devdeps
26+
init: |
27+
make install
28+
echo "Deps installed."
29+
3330
#- name: faucet
3431
# ...
3532

0 commit comments

Comments
 (0)