Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update gitpod configuration #987

Merged
merged 8 commits into from
Jul 27, 2023
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
56 changes: 40 additions & 16 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,51 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.
# http://gitpod.io/#github.com/gnolang/gno

tasks:
- name: Dev Shell
init: >
echo "install developer tools" &&
(cd misc/devdeps && make install) &&
echo "download dependencies" &&
go mod download &&
go install ./gnovm/cmd/gno
- name: Gno Shell
before: cd ./examples/
moul marked this conversation as resolved.
Show resolved Hide resolved
init: |
(
set -xe
cd ..
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.land/
init: go install ./cmd/gnoland
command: gnoland start

- name: Gnoland Website
init: go install ./gno.land/cmd/gnoweb
before: cd ./gno.land/
init: go install ./cmd/gnoweb
command: gnoweb --bind=0.0.0.0:8888

- name: Gnoland Node
init: go install ./gno.land/cmd/gnoland
command: gnoland start
#- name: faucet
# ...
moul marked this conversation as resolved.
Show resolved Hide resolved

ports:
- port: 8888
- name: gnoweb
description: "the Gno.land web server"
port: 8888
onOpen: open-preview
- port: 36657

- name: "gnoland RPC"
description: "the RPC server, managed by tendermint2"
port: 36657
onOpen: notify

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