-
Notifications
You must be signed in to change notification settings - Fork 6
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 #22 from gked/gettingStarted
Home page and Get started on a new documentation platform: VuePress
- Loading branch information
Showing
66 changed files
with
16,852 additions
and
5 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,8 @@ | ||
{ | ||
"grammarly.selectors": [ | ||
{ | ||
"language": "markdown", | ||
"scheme": "file" | ||
} | ||
] | ||
} |
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,47 @@ | ||
|
||
name: Deploy Docs | ||
|
||
on: | ||
push: | ||
branches: | ||
# make sure this is the branch you are using | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
deploy-gh-pages: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
# if your docs needs submodules, uncomment the following line | ||
# submodules: true | ||
|
||
|
||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: npm | ||
|
||
- name: Install Deps | ||
run: npm ci | ||
|
||
- name: Build Docs | ||
env: | ||
NODE_OPTIONS: --max_old_space_size=8192 | ||
run: |- | ||
npm run docs:build | ||
> docs/.vuepress/dist/.nojekyll | ||
- name: Deploy Docs | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
# This is the branch where the docs are deployed to | ||
branch: gh-pages | ||
folder: docs/.vuepress/dist |
11 changes: 11 additions & 0 deletions
11
vuepress-starter/docs/.vuepress/.cache/deps/@vue_devtools-api.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
vuepress-starter/docs/.vuepress/.cache/deps/@vue_devtools-api.js.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
136 changes: 136 additions & 0 deletions
136
vuepress-starter/docs/.vuepress/.cache/deps/@vuepress_shared.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
vuepress-starter/docs/.vuepress/.cache/deps/@vuepress_shared.js.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
40 changes: 40 additions & 0 deletions
40
vuepress-starter/docs/.vuepress/.cache/deps/_metadata.json
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,40 @@ | ||
{ | ||
"hash": "811059f0", | ||
"configHash": "ef91ecb6", | ||
"lockfileHash": "647c4151", | ||
"browserHash": "a27d6945", | ||
"optimized": { | ||
"@vue/devtools-api": { | ||
"src": "../../../../node_modules/@vue/devtools-api/lib/esm/index.js", | ||
"file": "@vue_devtools-api.js", | ||
"fileHash": "0cd402fc", | ||
"needsInterop": false | ||
}, | ||
"@vuepress/shared": { | ||
"src": "../../../../node_modules/@vuepress/shared/dist/index.js", | ||
"file": "@vuepress_shared.js", | ||
"fileHash": "33b29d11", | ||
"needsInterop": false | ||
}, | ||
"vue": { | ||
"src": "../../../../node_modules/vue/dist/vue.runtime.esm-bundler.js", | ||
"file": "vue.js", | ||
"fileHash": "15f5234e", | ||
"needsInterop": false | ||
}, | ||
"vue-router": { | ||
"src": "../../../../node_modules/vue-router/dist/vue-router.esm-bundler.js", | ||
"file": "vue-router.js", | ||
"fileHash": "fef20e50", | ||
"needsInterop": false | ||
} | ||
}, | ||
"chunks": { | ||
"chunk-UKCZNIRO": { | ||
"file": "chunk-UKCZNIRO.js" | ||
}, | ||
"chunk-ONFHZ5OS": { | ||
"file": "chunk-ONFHZ5OS.js" | ||
} | ||
} | ||
} |
Oops, something went wrong.