-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.gitpod.yml
55 lines (52 loc) · 1.18 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
image:
file: .gitpod.Dockerfile
tasks:
- name: Testnet
init: |
docker pull stellar/quickstart:testing
command: |
docker run --rm -i \
-p 8000:8000 \
--name stellar \
stellar/quickstart:testing \
--testnet \
--enable-soroban-rpc
- name: "Albedo Signer"
command: |
cd ~/.local/_client
clear
npm run start
- name: CLI - Testnet
env:
SOROBAN_RPC_URL: "https://soroban-testnet.stellar.org:443/"
SOROBAN_NETWORK_PASSPHRASE: "Test SDF Network ; September 2015"
init: |
cargo clean
cargo fetch
stellar contract build --package soroban-hello-world-contract
cargo test --package soroban-hello-world-contract
command: |
source ~/.local/bash-hook
if [[ ${QUEST} ]]
then
gp open quests/${QUEST}*/README.md
else
gp open README.md
fi
clear
vscode:
extensions:
- vadimcn.vscode-lldb
- rust-lang.rust-analyzer
ports:
- name: Testnet
port: 8000
visibility: public
onOpen: ignore
- name: Albedo Signer
port: 3000
visibility: public
onOpen: ignore
- port: 4226
visibility: private
onOpen: ignore