Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,28 @@ additionalRepositories:
checkoutLocation: gno

tasks:
- name: Gno Shell
- name: Gno CLI
init: |
(
set -xe
cd ../gno
echo "install developer tools"
(cd misc/devdeps && make install)
echo "download dependencies"
go mod download
# using go.mod's version of gno
go install github.com/gnolang/gno/gnovm/cmd/gno
echo "Deps installed."
)
command: gno --help

- name: Gnoland Node
- name: Gnoland
before: cd ../gno/gno.land/
init: go install ./cmd/gnoland
command: gnoland start

- name: Gnoland Website
- 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: faucet
# ...

Expand Down