Skip to content

Commit 74f65f6

Browse files
nisarhassan12ktsn
andauthoredMay 6, 2020
chore: setup Gitpod (#422)
* simplify code contributions by fully automating the dev setup with Gitpod. * docs: fix package name Co-authored-by: Katashin <ktsn55@gmail.com>
1 parent 70ed762 commit 74f65f6

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed
 

‎.gitpod.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
tasks:
2+
- name: Compile
3+
init: yarn install && yarn build && gp sync-done install
4+
command: yarn dev
5+
- name: Docs
6+
init: gp sync-await install
7+
command: yarn docs:dev
8+
9+
ports:
10+
- port: 8080
11+
onOpen: open-preview
12+
13+
vscode:
14+
extensions:
15+
- octref.vetur@0.23.0:TEzauMObB6f3i2JqlvrOpA==

‎README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22

33
ECMAScript / TypeScript decorator for class-style Vue components.
44

5-
[![npm](https://img.shields.io/npm/v/vue-class-component.svg)](https://www.npmjs.com/package/vue-class-component)
5+
[![npm](https://img.shields.io/npm/v/vue-class-component.svg)](https://www.npmjs.com/package/vue-class-component) [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/vuejs/vue-class-component)
66

77
## Document
88

99
See [https://class-component.vuejs.org](https://class-component.vuejs.org)
1010

11+
## Online one-click setup for contributing
12+
13+
Contribute to Vue Class Component using a fully featured online development environment that will automatically: clone the repo, install the dependencies and start the docs web server and run `yarn dev`.
14+
15+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/from-referrer/)
16+
1117
## Questions
1218

1319
For questions and support please use the [the official forum](http://forum.vuejs.org) or [community chat](https://chat.vuejs.org/). The issue list of this repo is **exclusively** for bug reports and feature requests.

0 commit comments

Comments
 (0)
Please sign in to comment.