Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Add config.js and downgrade vuepress #7

Merged
merged 1 commit into from
Jun 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
module.exports = {
markdown: {
lineNumbers: true
},
title: 'Theengs app',
description: 'Multi platform BLE Application leveraging Theengs Decoder',
head: [
['link', { rel: "apple-touch-icon", sizes: "180x180", href: ".apple-touch-icon.png"}],
['link', { rel: "icon", type: "image/png", sizes: "32x32", href: "/favicon-32x32.png"}],
['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/favicon-16x16.png"}],
['link', { rel: 'manifest', href: '/manifest.json' }],
['meta', { name: 'theme-color', content: '#3eaf7c' }],
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }],
['link', { rel: 'mask-icon', href: '/icons/safari-pinned-tab.svg', color: '#3eaf7c' }],
['meta', { name: 'msapplication-TileImage', content: '/favicon-144x144.png' }],
['meta', { name: 'msapplication-TileColor', content: '#000000' }]
],
themeConfig: {
smoothScroll: true,
repo: 'theengs/app',
docsDir: 'docs',
docsBranch: 'development',
lastUpdated: 'Last Updated',
editLinks: true,
nav: [
{ text: 'App', link: 'https://app.theengs.io', target:'_self', rel:''},
{ text: 'Gateway', link: 'https://gateway.theengs.io', target:'_self', rel:''},
{ text: 'Decoder', link: 'https://decoder.theengs.io', target:'_self', rel:''}
],
sidebar: [
['/','0 - What is it for 🏠'],
{
title: '1 - Prerequisites🧭',
children: [
'prerequisites/devices',
'prerequisites/controller']
},
['/install/install','2 - Install ✔️'],
{
title: '3 - Use ✈️',
children: [
'use/use',
'use/privacy'
]
},
{
title: '4 - Participate 💻',
children: [
'participate/adding-decoders',
'participate/build',
'participate/support',
'participate/development'
]
}
]
},
plugins: [
['@vuepress/pwa', {
serviceWorker: true,
updatePopup: true
}],
['@vuepress/medium-zoom', true],
['@vuepress/nprogress']
]
}
2 changes: 2 additions & 0 deletions docs/install/privacy.md → docs/use/privacy.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Privacy

This privacy policy governs your use of the software application Theengs.
This privacy policy was last updated on June 22, 2022. This privacy policy may change from time to time, for any reason. If you have any questions or concerns about this privacy policy, feel free to contact me at any time (support@theengs.io).

Expand Down
Loading