From 1562d7e37322816f031d89b8fca4f191f2529175 Mon Sep 17 00:00:00 2001 From: Nisar Hassan Naqvi Date: Mon, 16 Mar 2020 04:43:46 +0000 Subject: [PATCH] simplify code contributions by fully automating the dev setup. --- .gitpod.yml | 3 +++ README.md | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..c4b48c3 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,3 @@ +tasks: + - init: npm install && npm run build + command: npm run start diff --git a/README.md b/README.md index 9f98163..2c5e3d4 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,18 @@ to the minified file in the head of your HTML file. ``` +### Online One-click Setup + +You can use Gitpod(a free online VS Code-like IDE), with a single click it'll launch a workspace and automatically: + +- clone the tachyons repo. +- install the dependencies. +- run `npm run start`. + +so that you can start straight away. + +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/from-referrer/) + ### Local Setup Clone the repo from Github and install dependencies through npm.