-
Notifications
You must be signed in to change notification settings - Fork 70
/
.gitpod.yml
34 lines (32 loc) · 1000 Bytes
/
.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
image:
file: .gitpod.Dockerfile
tasks:
# This "CLI - Testnet" task opens a terminal for you to interact with the
# testnet network.
- name: CLI - Testnet
# We specify some required environment variables for use on the testnet.
env:
# This can be set by the user, but this terminal is dedicated to testnet so set for convenience.
SOROBAN_RPC_URL: "https://soroban-testnet.stellar.org"
SOROBAN_NETWORK_PASSPHRASE: "Test SDF Network ; September 2015"
# To keep things tidy, we clear the terminal from the previous output.
command: |
clear
- name: CLI - Sandbox
init: |
make all
command: |
gp open README.md
gp open increment/src/lib.rs
gp open increment/src/test.rs
gp open README.md
stellar version
vscode:
extensions:
- rust-lang.rust-analyzer
- vadimcn.vscode-lldb
ports:
# This port is open for "Something with cargo test I think"??
- port: 4226
visibility: private
onOpen: ignore