From d89d48fe70aec5233aa8f623b4123a19032dd7b2 Mon Sep 17 00:00:00 2001 From: bradoc23 Date: Sat, 22 Feb 2020 09:55:10 +0000 Subject: [PATCH] Add gitpod config this commit adds support for Gitpod.io, a free automated dev environment that makes contributing and generally working on GitHub projects much easier. It allows anyone to start a ready-to-code dev environment for any branch, issue and pull request with a single click. --- .gitpod.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..b68f4d4 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,4 @@ +tasks: + - init: echo "Replace me with a build script for the project." + command: echo "Replace me with omething that should run on every start, or just + remove me entirely."