-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# this project uses workspace-full but if you only want to run Starlark | ||
# use workspace-base instead | ||
# can't use that here as this needs Go and TS | ||
FROM gitpod/workspace-full |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
|
||
tasks: | ||
- name: Setup Kurtosis | ||
command: | | ||
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list | ||
sudo apt update | ||
sudo apt install kurtosis-cli | ||
kurtosis run github.com/fake-package/fake-package-purely-for-analytics || kurtosis clean -a | ||
code README.md | ||
source <(kurtosis completion bash) | ||
echo "source <(kurtosis completion bash)" >> ~/.bashrc | ||
clear | ||
ports: | ||
- name: Kurtosis Engine Grpc Listen | ||
port: 9710 | ||
onOpen: ignore | ||
- name: Kurtosis Engine Grpc Proxy Listen | ||
port: 9710 | ||
onOpen: ignore | ||
|
||
|
||
vscode: | ||
extensions: | ||
- Kurtosis.kurtosis-extension |