-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More Documentation and Badges for Projects
- Loading branch information
1 parent
53e223a
commit f097892
Showing
24 changed files
with
438 additions
and
370 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
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/node_modules | ||
/.vitepress/dist | ||
/docs/.vitepress/dist | ||
/docs/.vitepress/cache |
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 |
---|---|---|
@@ -1,84 +1,115 @@ | ||
import {defineConfig} from 'vitepress' | ||
import { defineConfig } from "vitepress"; | ||
|
||
export default defineConfig({ | ||
lang: 'en-US', | ||
title: 'Nitro_Repo', | ||
description: 'A Fast Artifact Manager', | ||
lastUpdated: true, | ||
themeConfig: { | ||
nav: [ | ||
{text: 'Home', link: '/', activeMatch: '^/$'}, | ||
{ | ||
text: 'System Admin', | ||
link: '/sysAdmin/', | ||
activeMatch: '^/sysAdmin/' | ||
}, | ||
{ | ||
text: 'Knowledge Base', | ||
link: '/knowledge/', | ||
activeMatch: '^/knowledge/' | ||
}, | ||
{ | ||
text: 'Release Notes', | ||
link: 'https://github.com/wyatt-herkamp/nitro_repo/releases' | ||
} | ||
], | ||
socialLinks: [ | ||
{icon: 'github', link: 'https://github.com/wyatt-herkamp/nitro_repo'} | ||
], | ||
sidebar: { | ||
'/': generalInfo(), | ||
'/sysAdmin/': sysAdminBar(), | ||
'/knowledge/': knowledgeBaseBar() | ||
}, | ||
lang: "en-US", | ||
title: "Nitro_Repo", | ||
description: "A Fast Artifact Manager", | ||
lastUpdated: true, | ||
themeConfig: { | ||
nav: [ | ||
{ text: "Home", link: "/", activeMatch: "^/$" }, | ||
{ | ||
text: "System Admin", | ||
link: "/sysAdmin/", | ||
activeMatch: "^/sysAdmin/", | ||
}, | ||
{ | ||
text: "Knowledge Base", | ||
link: "/knowledge/", | ||
activeMatch: "^/knowledge/", | ||
}, | ||
{ | ||
text: "Repository Types", | ||
link: "/repositoryTypes/", | ||
activeMatch: "^/repositoryTypes/", | ||
}, | ||
{ | ||
text: "Release Notes", | ||
link: "https://github.com/wyatt-herkamp/nitro_repo/releases", | ||
}, | ||
], | ||
socialLinks: [ | ||
{ icon: "github", link: "https://github.com/wyatt-herkamp/nitro_repo" }, | ||
], | ||
sidebar: { | ||
"/": generalInfo(), | ||
"/sysAdmin/": sysAdminBar(), | ||
"/knowledge/": knowledgeBaseBar(), | ||
"/repositoryTypes/": repositoryTypesBar(), | ||
}, | ||
|
||
}) | ||
}, | ||
}); | ||
|
||
function generalInfo() { | ||
return [ | ||
{ | ||
text: 'Nitro Repo', | ||
items: [ | ||
{text: 'What is Nitro Repo?', link: '/'}, | ||
{text: 'Features', link: '/features'}, | ||
{text: 'Compiling', link: '/compiling'}, | ||
{text: 'Contributing', link: '/contributing'}, | ||
] | ||
} | ||
] | ||
return [ | ||
{ | ||
text: "Nitro Repo", | ||
items: [ | ||
{ text: "What is Nitro Repo?", link: "/" }, | ||
{ text: "Features", link: "/features" }, | ||
{ text: "Contributing", link: "/contributing" }, | ||
], | ||
}, | ||
]; | ||
} | ||
|
||
function knowledgeBaseBar() { | ||
return [ | ||
{ | ||
text: 'User Management', | ||
items: [ | ||
{text: 'User Permissions', link: '/knowledge/userpermissions'}, | ||
] | ||
}, { | ||
text: 'Repositories', | ||
items: [ | ||
{text: 'Artifact Types', link: '/knowledge/ArtifactTypes'} | ||
] | ||
}, { | ||
text: 'Other', | ||
items: [ | ||
{text: 'Internal Workings', link: '/knowledge/InternalWorkings'} | ||
] | ||
}, | ||
|
||
] | ||
return [ | ||
{ | ||
text: "Other", | ||
items: [ | ||
{ text: "Internal Workings", link: "/knowledge/InternalWorkings" }, | ||
], | ||
}, | ||
]; | ||
} | ||
|
||
function sysAdminBar() { | ||
return [ | ||
{ | ||
text: 'Installing', | ||
items: [ | ||
{text: 'Prepping your System', link: '/sysAdmin/'}, | ||
return [ | ||
{ | ||
text: "Installing", | ||
items: [{ text: "Prepping your System", link: "/sysAdmin/" }], | ||
}, | ||
]; | ||
} | ||
|
||
] | ||
} | ||
] | ||
function repositoryTypesBar() { | ||
return [ | ||
{ | ||
text: "Maven", | ||
link: "/repositoryTypes/maven", | ||
items: [ | ||
{ | ||
text: "Maven Standard", | ||
link: "/repositoryTypes/maven/standard", | ||
}, | ||
{ | ||
text: "Nitro Deploy", | ||
link: "/repositoryTypes/maven/nitroDeploy", | ||
}, | ||
{ | ||
text: "Configs", | ||
link: "/repositoryTypes/maven/configs", | ||
}, | ||
], | ||
}, | ||
{ | ||
text: "NPM", | ||
link: "/repositoryTypes/npm", | ||
items: [ | ||
{ | ||
text: "NPM Standard", | ||
link: "/repositoryTypes/npm/standard", | ||
}, | ||
{ | ||
text: "Configs", | ||
link: "/repositoryTypes/npm/configs", | ||
}, | ||
{ | ||
text: "Common Issues", | ||
link: "/repositoryTypes/npm/errors", | ||
}, | ||
], | ||
}, | ||
]; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.