From 64b86f3769caca1930780f708e0b89cba0ea3ec5 Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Wed, 8 Sep 2021 12:39:30 -0500 Subject: [PATCH] Add `.gitpod.yml` for continuous prebuilds for speedy project startup! (#1328) --- .gitpod.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000000..7b6943dd0f --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +# Commands to start on workspace startup +tasks: + - init: yarn install + command: yarn build +# Once astro is on [vsx](https://open-vsx.org/), we should be able to specify it as an extension as well! +# https://www.gitpod.io/docs/vscode-extensions +# vscode: +# extensions: +# - astro-build.astro-vscode + \ No newline at end of file