From 53d42412ed76180f6444939337590481dfb80431 Mon Sep 17 00:00:00 2001 From: Anix Date: Fri, 13 Mar 2020 07:39:02 +0000 Subject: [PATCH 1/2] 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 | 2 ++ README.md | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..2b06da2 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,2 @@ +tasks: + - init: npm install diff --git a/README.md b/README.md index 8aaa08a..7622c5b 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,10 @@ docsify serve [--open false] [--port 3000] Please see the [Contributing Guidelines](./CONTRIBUTING.md) +## Contribution + +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/docsifyjs/docsify-cli) + ## License [MIT](./LICENSE) From 718901c66508934bb6ffa34270428afd5f2b4718 Mon Sep 17 00:00:00 2001 From: Anix Date: Fri, 13 Mar 2020 07:43:11 +0000 Subject: [PATCH 2/2] Chore: refactored gitpod.yml --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 2b06da2..30c7b74 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,2 +1,2 @@ tasks: - - init: npm install + - init: npm install && npm run build