-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup simple doc template with vuepress
- Loading branch information
Showing
12 changed files
with
3,564 additions
and
600 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,6 @@ | ||
# VuePress default temp directory | ||
.vuepress/.temp | ||
# VuePress default cache directory | ||
.vuepress/.cache | ||
# VuePress default build output directory | ||
.vuepress/dist |
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,25 @@ | ||
import { viteBundler } from '@vuepress/bundler-vite'; | ||
import { defaultTheme } from '@vuepress/theme-default'; | ||
import { defineUserConfig } from 'vuepress'; | ||
|
||
const globalNavbar = [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Admin Guide', link: '/admin/' }, | ||
{ text: 'Developer Docs', link: '/dev/' }, | ||
{ text: 'Design Prototypes', link: '/design/' }, | ||
]; | ||
|
||
export default defineUserConfig({ | ||
title: 'Immigration Justice Project', | ||
description: | ||
'Documentation for the user portal developed by Cal Blueprint for the Immigration Justice Project.', | ||
bundler: viteBundler(), | ||
theme: defaultTheme({ | ||
repo: 'calblueprint/immigration-justice-project', | ||
docsDir: 'docs', | ||
docsBranch: 'docs', | ||
editLinkText: 'Edit this page on GitHub', | ||
editLink: true, | ||
navbar: globalNavbar, | ||
}), | ||
}); |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,3 @@ | ||
--- | ||
home: true | ||
--- |
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 @@ | ||
# Admins |
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 @@ | ||
# Supabase Backend |
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 @@ | ||
# Design |
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 @@ | ||
# Developer Docs |
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 @@ | ||
# User Portal | ||
|
Oops, something went wrong.