-
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.
Merge pull request #63 from marshallswain/feat/allowUnnamedQueryForEx…
…ternal feat: allowUnnamedQueryForExternal for service/app & docs - migrate to vitepress
- Loading branch information
Showing
23 changed files
with
6,838 additions
and
41,902 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 |
---|---|---|
|
@@ -118,4 +118,5 @@ data/ | |
|
||
# vuepress | ||
|
||
docs/.vuepress/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
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,59 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { name, description, defaultBranch, repository } from './meta' | ||
import { version } from '../../package.json' | ||
|
||
export default defineConfig({ | ||
title: name, | ||
lastUpdated: true, | ||
description, | ||
head: [['link', { rel: 'icon', href: '/favicon.ico' }]], | ||
themeConfig: { | ||
sidebar: [ | ||
{ | ||
text: 'Guide', | ||
items: [ | ||
{ text: 'Getting Started', link: '/getting-started' }, | ||
{ text: 'Hooks', link: '/hooks' }, | ||
], | ||
}, | ||
], | ||
nav: [ | ||
{ | ||
text: `v${version}`, | ||
items: [ | ||
{ | ||
text: 'Changelog', | ||
link: `https://github.com/${repository}/blob/${defaultBranch}/CHANGELOG.md`, | ||
}, | ||
{ | ||
text: 'Contributing', | ||
link: `https://github.com/${repository}/blob/${defaultBranch}/.github/contributing.md`, | ||
}, | ||
], | ||
}, | ||
], | ||
editLink: { | ||
pattern: `https://github.com/${repository}/edit/${defaultBranch}/docs/:path`, | ||
}, | ||
socialLinks: [ | ||
{ | ||
icon: 'twitter', | ||
link: 'https://twitter.com/feathersjs', | ||
}, | ||
{ | ||
icon: 'discord', | ||
link: 'https://discord.gg/qa8kez8QBx', | ||
}, | ||
{ | ||
icon: 'github', | ||
link: `https://github.com/${repository}`, | ||
}, | ||
], | ||
logo: '/img/graph-populate-logo.png', | ||
lastUpdatedText: 'Last Updated', | ||
footer: { | ||
message: 'Released under the MIT License.', | ||
copyright: 'MIT Licensed | © 2019-present Marshall Thompson', | ||
}, | ||
}, | ||
}) |
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,4 @@ | ||
export const name = "feathers-graph-populate"; | ||
export const description = "Add lightning fast, GraphQL-like populates to your FeathersJS API."; | ||
export const repository = "marshallswain/feathers-graph-populate" as const; | ||
export const defaultBranch = "master" as const; |
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,11 @@ | ||
/** | ||
* Colors | ||
* -------------------------------------------------------------------------- */ | ||
|
||
:root { | ||
--vp-c-brand: #cc0099; | ||
--vp-c-brand-light: #d600a0; | ||
--vp-c-brand-lighter: #e600ac; | ||
--vp-c-brand-dark: #cc0099; | ||
--vp-c-brand-darker: rgb(118, 2, 120); | ||
} |
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 @@ | ||
import Theme from 'vitepress/theme' | ||
import '../style/main.css' | ||
|
||
export default { | ||
...Theme, | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
--- | ||
title: graph-populate hooks | ||
sidebarDepth: 3 | ||
--- | ||
# Hooks | ||
|
||
## Introduction | ||
|
||
|
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,16 +1,24 @@ | ||
--- | ||
home: true | ||
heroImage: /img/graph-populate-logo.png | ||
heroText: feathers-graph-populate | ||
tagLine: Add lightning fast, GraphQL-like populates to your FeathersJS API. | ||
actionText: Get Started | ||
actionLink: ./getting-started.md | ||
layout: home | ||
|
||
hero: | ||
name: feathers-graph-populate | ||
image: | ||
src: /img/graph-populate-logo.png | ||
alt: feathers-graph-populate | ||
tagline: Add lightning fast, GraphQL-like populates to your FeathersJS API. | ||
actions: | ||
- theme: brand | ||
text: Get Started | ||
link: ./getting-started.md | ||
|
||
features: | ||
- title: Super Duper, Hyper Mega Fast 🚀 | ||
details: API designed for rocket speed without the rocket science. | ||
- title: Become a Relationship Expert 💝 | ||
details: Defining a relationship is as simple as specifying the primary and foreign keys. | ||
- title: Dive Way Down with Deep Populates 🏊♂️ | ||
details: Simple query syntax supports multiple, nested, and even recursive populates. | ||
footer: MIT Licensed | Copyright © 2019-present Marshall Thompson | ||
- title: Super Duper, Hyper Mega Fast 🚀 | ||
details: API designed for rocket speed without the rocket science. | ||
- title: Become a Relationship Expert 💝 | ||
details: Defining a relationship is as simple as specifying the primary and foreign keys. | ||
- title: Dive Way Down with Deep Populates | ||
detaules: Simple query syntax supports multiple, nested and even recursive populates. | ||
|
||
footer: MIT Licensed | © 2019-present Marshall Thompson | ||
--- |
File renamed without changes.
File renamed without changes
Oops, something went wrong.