Skip to content

Commit

Permalink
feat: add initial gitpod file (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Jul 22, 2023
1 parent 38371a5 commit 5faa26b
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# http://gitpod.io/#github.com/gnolang/getting-started-workshop

additionalRepositories:
- url: https://github.com/gnolang/gno
checkoutLocation: gno


tasks:
- name: Gno Shell
init: |
(
set -xe
cd ../gno
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/gno.land/
init: go install ./cmd/gnoland
command: gnoland start

- name: Gnoland Website
before: cd ../gno/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: 36657
onOpen: notify

github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: true
addBadge: true

0 comments on commit 5faa26b

Please sign in to comment.