2020-11-15 21:42:02 +00:00
|
|
|
module.exports = {
|
2020-12-05 21:08:42 +00:00
|
|
|
title: "authentik",
|
2021-03-18 19:51:21 +00:00
|
|
|
tagline: "Making authentication simple.",
|
2020-12-05 21:08:42 +00:00
|
|
|
url: "https://goauthentik.io",
|
2020-11-15 21:42:02 +00:00
|
|
|
baseUrl: "/",
|
|
|
|
onBrokenLinks: "throw",
|
2020-12-05 21:08:42 +00:00
|
|
|
favicon: "img/icon.png",
|
2020-11-15 21:42:02 +00:00
|
|
|
organizationName: "BeryJu",
|
2020-12-05 21:08:42 +00:00
|
|
|
projectName: "authentik",
|
2020-11-15 21:42:02 +00:00
|
|
|
themeConfig: {
|
|
|
|
navbar: {
|
2020-12-05 21:08:42 +00:00
|
|
|
title: "authentik",
|
2020-11-15 21:42:02 +00:00
|
|
|
logo: {
|
2020-12-05 21:08:42 +00:00
|
|
|
alt: "authentik logo",
|
|
|
|
src: "img/icon_left_brand.svg",
|
2020-11-15 21:42:02 +00:00
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
to: "docs/",
|
|
|
|
activeBasePath: "docs",
|
|
|
|
label: "Docs",
|
|
|
|
position: "left",
|
|
|
|
},
|
2021-04-18 15:25:03 +00:00
|
|
|
{
|
|
|
|
to: "developer-docs/",
|
|
|
|
activeBasePath: "developer-docs",
|
|
|
|
label: "Developer Docs",
|
|
|
|
position: "left",
|
|
|
|
},
|
2021-04-18 15:15:19 +00:00
|
|
|
{
|
|
|
|
to: "api/",
|
|
|
|
activeBasePath: "api",
|
|
|
|
label: "API",
|
|
|
|
position: "left",
|
|
|
|
},
|
2020-11-15 21:42:02 +00:00
|
|
|
{
|
2021-05-13 18:15:29 +00:00
|
|
|
href: "https://github.com/goauthentik/authentik",
|
2020-11-15 21:42:02 +00:00
|
|
|
label: "GitHub",
|
|
|
|
position: "right",
|
|
|
|
},
|
2021-04-08 19:03:48 +00:00
|
|
|
{
|
|
|
|
href: "https://discord.gg/jg33eMhnj6",
|
|
|
|
label: "Discord",
|
|
|
|
position: "right",
|
|
|
|
},
|
2020-11-15 21:42:02 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
links: [
|
|
|
|
{
|
|
|
|
title: "Docs",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
label: "Documentation",
|
|
|
|
to: "docs/",
|
|
|
|
},
|
2021-04-18 15:25:03 +00:00
|
|
|
{
|
|
|
|
label: "Developer Documentation",
|
|
|
|
to: "developer-docs/",
|
|
|
|
},
|
2020-11-15 21:42:02 +00:00
|
|
|
{
|
|
|
|
label: "Installations",
|
|
|
|
to: "docs/installation/index",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "More",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
label: "GitHub",
|
2021-05-13 18:15:29 +00:00
|
|
|
href: "https://github.com/goauthentik/authentik",
|
2020-11-15 21:42:02 +00:00
|
|
|
},
|
2021-04-08 19:03:48 +00:00
|
|
|
{
|
|
|
|
label: "Discord",
|
|
|
|
href: "https://discord.gg/jg33eMhnj6",
|
|
|
|
},
|
2020-11-15 21:42:02 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
copyright: `Copyright © ${new Date().getFullYear()} BeryJu.org. Built with Docusaurus.`,
|
|
|
|
},
|
|
|
|
colorMode: {
|
|
|
|
respectPrefersColorScheme: true,
|
|
|
|
},
|
2021-04-12 16:25:52 +00:00
|
|
|
algolia: {
|
|
|
|
apiKey: '1b60b8f630b127697cbe0d3b31841470',
|
|
|
|
indexName: 'goauthentik',
|
|
|
|
},
|
2020-11-15 21:42:02 +00:00
|
|
|
},
|
2021-07-19 19:50:56 +00:00
|
|
|
clientModules: [
|
|
|
|
require.resolve('./src/sentry.jsx'),
|
|
|
|
],
|
2020-11-15 21:42:02 +00:00
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@docusaurus/preset-classic",
|
|
|
|
{
|
|
|
|
docs: {
|
2021-04-18 15:25:03 +00:00
|
|
|
id: "docs",
|
2020-11-15 21:42:02 +00:00
|
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
2021-05-13 18:15:29 +00:00
|
|
|
editUrl: "https://github.com/goauthentik/authentik/edit/master/website/",
|
2020-11-15 21:42:02 +00:00
|
|
|
},
|
|
|
|
theme: {
|
|
|
|
customCss: require.resolve("./src/css/custom.css"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
2021-04-18 15:25:03 +00:00
|
|
|
plugins: [
|
|
|
|
[
|
|
|
|
'@docusaurus/plugin-content-docs',
|
|
|
|
{
|
|
|
|
id: 'docsDevelopers',
|
|
|
|
path: 'developer-docs',
|
|
|
|
routeBasePath: 'developer-docs',
|
|
|
|
sidebarPath: require.resolve('./sidebarsDev.js'),
|
2021-05-13 18:15:29 +00:00
|
|
|
editUrl: "https://github.com/goauthentik/authentik/edit/master/website/",
|
2021-04-18 15:25:03 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
2020-11-15 21:42:02 +00:00
|
|
|
};
|