We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7947bdf commit 27e38a2Copy full SHA for 27e38a2
README.md
@@ -1 +1,41 @@
1
-# core
+# Docus Github Module
2
+
3
+> GitHub integration for Docus.
4
5
6
+## Quick Setup
7
8
+1. Add `@docus/github` dependency to your project:
9
10
+```bash
11
+#using yarn
12
+yarn add --dev @docus/github
13
+# using npm
14
+npm install --save-dev @docus/github
15
+```
16
17
18
+2. Add `@docus/github` to the `buildModules` section of your `nuxt.config.js`
19
20
21
+{
22
+ buildModules: [
23
+ '@docus/github'
24
+ ]
25
+}
26
27
28
29
+## Usage
30
31
+### Get github releases using `$docus.data` util
32
33
+```js
34
+$docus.data('github-releases')
35
36
37
+## Development
38
39
+1. Clone this repository
40
+2. Install dependencies using `yarn install`
41
+3. Start dev server using `yarn dev`
0 commit comments