From 66baabb6ef37796be401136b3f1f6613bb163df6 Mon Sep 17 00:00:00 2001 From: Cleo John <30842467+CutestNekoAqua@users.noreply.github.com> Date: Thu, 6 Oct 2022 00:35:13 +0200 Subject: [PATCH] Add Gitpod config (#2173) Gitpod is a free only ide which allows you to edit and run code in the browser. This script eases the gitpod setup. --- .gitpod.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 000000000..6de4ee2b3 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +# Automatic workspace preparation for gitpod instances + +tasks: + - init: sudo apt-get install ffmpeg -y && go get && go build ./... && go test ./... + command: go run .