forked from ignite/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
39 lines (31 loc) · 1.11 KB
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
image: gitpod/workspace-full
checkoutLocation: "starport"
workspaceLocation: "./starport/docs"
tasks:
- name: Install Starport
init: |
# Install Starport
export BIN_PATH=$GOPATH/bin
export VUE_APP_CUSTOM_URL=$(gp url)
export CHISEL_ADDR=$(gp url 7575)
mkdir -p $BIN_PATH
(cd /workspace/starport && ./scripts/install)
# Install Github CLI
brew install gh
# install rly
(cd /tmp && git clone https://github.com/ovrclk/relayer && cd relayer && git checkout 3080dab10e37e6db9e691c343b1c0cdb6d845753 && make -C /tmp/relayer install)
command: |
export VUE_APP_CUSTOM_URL=$(gp url)
export CHISEL_ADDR=$(gp url 7575)
export RPC_ADDRESS=$(gp url 26657):443
clear && printf '\e[3J'
echo -e "
Welcome to Starport! 💫 The friendly CLI that makes building blockchains easy.
In the sidebar you can see a list of guides that will help you get started.
This terminal has the \033[1mstarport\033[0m binary already installed and ready to go.
"
ports:
- port: 1317
- port: 26657
- port: 8080
- port: 7575