mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
9fa70c3455
* Add vision pipeline diagram * Moved pipeline to the Guides section * Fixing segment storage and other flows * Added text * Update docs/docs/guides/video_pipeline.md Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> * Keeping case as other pages * Changing sections to ## * Update docs/docs/guides/video_pipeline.md Co-authored-by: Blake Blackshear <blakeb@blakeshome.com> * Update docs/docs/guides/video_pipeline.md Co-authored-by: Blake Blackshear <blakeb@blakeshome.com> --------- Co-authored-by: cat101 <cat101@nowhere.com> Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> Co-authored-by: Blake Blackshear <blakeb@blakeshome.com>
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
title: 'Frigate',
|
|
tagline: 'NVR With Realtime Object Detection for IP Cameras',
|
|
url: 'https://docs.frigate.video',
|
|
baseUrl: '/',
|
|
onBrokenLinks: 'throw',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
favicon: 'img/favicon.ico',
|
|
organizationName: 'blakeblackshear',
|
|
projectName: 'frigate',
|
|
markdown: {
|
|
mermaid: true,
|
|
},
|
|
themes: ['@docusaurus/theme-mermaid'],
|
|
themeConfig: {
|
|
algolia: {
|
|
appId: 'WIURGBNBPY',
|
|
apiKey: 'd02cc0a6a61178b25da550212925226b',
|
|
indexName: 'frigate',
|
|
},
|
|
docs: {
|
|
sidebar: {
|
|
hideable: true,
|
|
}
|
|
},
|
|
navbar: {
|
|
title: 'Frigate',
|
|
logo: {
|
|
alt: 'Frigate',
|
|
src: 'img/logo.svg',
|
|
srcDark: 'img/logo-dark.svg',
|
|
},
|
|
items: [
|
|
{
|
|
to: '/',
|
|
activeBasePath: 'docs',
|
|
label: 'Docs',
|
|
position: 'left',
|
|
},
|
|
{
|
|
href: 'https://frigate.video',
|
|
label: 'Website',
|
|
position: 'right',
|
|
},
|
|
{
|
|
href: 'http://demo.frigate.video',
|
|
label: 'Demo',
|
|
position: 'right',
|
|
},
|
|
{
|
|
href: 'https://github.com/blakeblackshear/frigate',
|
|
label: 'GitHub',
|
|
position: 'right',
|
|
},
|
|
],
|
|
},
|
|
footer: {
|
|
style: 'dark',
|
|
links: [
|
|
{
|
|
title: 'Community',
|
|
items: [
|
|
{
|
|
label: 'GitHub',
|
|
href: 'https://github.com/blakeblackshear/frigate',
|
|
},
|
|
{
|
|
label: 'Discussions',
|
|
href: 'https://github.com/blakeblackshear/frigate/discussions',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
copyright: `Copyright © ${new Date().getFullYear()} Blake Blackshear`,
|
|
},
|
|
},
|
|
plugins: [path.resolve(__dirname, 'plugins', 'raw-loader')],
|
|
presets: [
|
|
[
|
|
'@docusaurus/preset-classic',
|
|
{
|
|
docs: {
|
|
routeBasePath: '/',
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
// Please change this to your repo.
|
|
editUrl: 'https://github.com/blakeblackshear/frigate/edit/master/docs/',
|
|
sidebarCollapsible: false
|
|
},
|
|
|
|
theme: {
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|