Skip to content

Commit 27600f7

Browse files
authored
Add files via upload
0 parents  commit 27600f7

14 files changed

+10517
-0
lines changed

.env.example

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
# Create one with no scope selected on https://github.com/settings/tokens/new
3+
GITHUB_TOKEN=

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
node_modules
2+
*.iml
3+
.idea
4+
*.log*
5+
.nuxt
6+
.vscode
7+
.DS_Store
8+
coverage
9+
dist
10+
sw.*
11+
.env

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ignore artifacts:
2+
build
3+
coverage

.prettierrc.json

6 Bytes
Binary file not shown.

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# documentation
2+
3+
## Setup
4+
5+
Install dependencies:
6+
7+
```bash
8+
yarn install
9+
```
10+
11+
## Development
12+
13+
```bash
14+
yarn dev
15+
```
16+
17+
## Static Generation
18+
19+
This will create the `dist/` directory for publishing to static hosting:
20+
21+
```bash
22+
yarn generate
23+
```
24+
25+
To preview the static generated app, run `yarn start`
26+
27+
For detailed explanation on how things work, checkout [nuxt/content](https://content.nuxtjs.org) and [@nuxt/content theme docs](https://content.nuxtjs.org/themes-docs).

content/en/index.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Introduction
3+
description: ''
4+
position: 1
5+
category: ''
6+
---
7+
8+
## Why us?
9+
10+
We are a team of open-source developers who worked on bigger projects before. We concentrate on building simple, but private and powerfool tools and applications.
11+

content/en/setup.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Setup
3+
description: ''
4+
position: 2
5+
category: User Guide
6+
---
7+
8+
## How to use the image host
9+

content/settings.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"title": "KonVision | Documentation",
3+
"url": "github.com/KonVision",
4+
"logo": {
5+
"light": "/logo-light.svg",
6+
"dark": "/logo-dark.svg"
7+
},
8+
"github": "KonVision/docs",
9+
"twitter": ""
10+
}

nuxt.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import theme from '@nuxt/content-theme-docs'
2+
3+
export default theme({
4+
docs: {
5+
primaryColor: '#c77dff'
6+
}
7+
})

package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "documentation",
3+
"version": "1.0.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "nuxt",
7+
"build": "nuxt build",
8+
"start": "nuxt start",
9+
"generate": "nuxt generate"
10+
},
11+
"dependencies": {
12+
"@nuxt/content-theme-docs": "^0.11.0",
13+
"nuxt": "^2.15.8"
14+
},
15+
"devDependencies": {
16+
"prettier": "2.7.1"
17+
}
18+
}

static/logo-dark.svg

+21
Loading

static/logo-light.svg

+21
Loading

static/sw.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// THIS FILE SHOULD NOT BE VERSION CONTROLLED
2+
3+
// https://github.com/NekR/self-destroying-sw
4+
5+
self.addEventListener('install', function (e) {
6+
self.skipWaiting()
7+
})
8+
9+
self.addEventListener('activate', function (e) {
10+
self.registration.unregister()
11+
.then(function () {
12+
return self.clients.matchAll()
13+
})
14+
.then(function (clients) {
15+
clients.forEach(client => client.navigate(client.url))
16+
})
17+
})

0 commit comments

Comments
 (0)