From 184ff51774f22db9e356cf5805875cae5df71298 Mon Sep 17 00:00:00 2001 From: Anix Date: Fri, 13 Mar 2020 07:12:17 +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 | 3 +++ README.md | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00000000..1f68bc2f --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,3 @@ +tasks: + - init: npm install && npm run build + command: npm run dev diff --git a/README.md b/README.md index e6fda5ba..46c29971 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,8 @@ Move to [awesome-docsify](https://github.com/docsifyjs/awesome-docsify#showcase) ## Contributing +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/docsifyjs/docsify) + - Fork it! - Create your feature branch: `git checkout -b my-new-feature` - Commit your changes: `git commit -am 'Add some feature'`