-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from kioydiolabs/move-to-vitepress
Move documentation to VitePress
- Loading branch information
Showing
32 changed files
with
1,896 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
docs/node_modules | ||
docs/.vitepress/cache |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "CISCAPPS", | ||
description: "OpenSource web apps for Cisco IP deskphones created by KioydioLabs.", | ||
head: [ | ||
['link', { rel: 'icon', href: '/logo.jpg' }], | ||
['meta', { name: 'theme-color', content: '#007bdf' }] | ||
], | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
search: { | ||
provider: 'local' | ||
}, | ||
logo: '/logo.jpg', | ||
nav: [ | ||
{ text: 'Home', link: '/' } | ||
], | ||
footer: { | ||
message: 'Released under the BSD 3-Clause License', | ||
copyright: 'KIOYDIOLABS © 2024' | ||
}, | ||
sidebar: [ | ||
{ | ||
text: 'Introduction', | ||
link: '/introduction', | ||
}, | ||
{ | ||
text: 'Docker Installation', | ||
link: '/docker-installation', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Installing requirements', link: '/installing-requirements' }, | ||
{ text: 'Modify the configuration file', link: '/modify-configuration-file' }, | ||
{ text: 'Deploy CISCAPPS', link: '/deploy-ciscapps' } | ||
] | ||
}, | ||
{ | ||
text: 'Deskphone Configuration', | ||
link: '/deskphone-configuration', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'FreePBX Configuration', link: '/free-pbx-configuration' }, | ||
{ text: 'XML File Configuration (Manual)', link: '/xml-file-manual-configuration' } | ||
] | ||
} | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/kioydiolabs/ciscapps_suite' } | ||
] | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// https://vitepress.dev/guide/custom-theme | ||
import { h } from 'vue' | ||
import type { Theme } from 'vitepress' | ||
import DefaultTheme from 'vitepress/theme' | ||
import './style.css' | ||
|
||
export default { | ||
extends: DefaultTheme, | ||
Layout: () => { | ||
return h(DefaultTheme.Layout, null, { | ||
// https://vitepress.dev/guide/extending-default-theme#layout-slots | ||
}) | ||
}, | ||
enhanceApp({ app, router, siteData }) { | ||
// ... | ||
} | ||
} satisfies Theme |
Oops, something went wrong.