mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-24 07:23:38 +00:00
[vuepress] Update config
Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
This commit is contained in:
parent
ff1f48a793
commit
fc8b8867af
10
.github/workflows/ci.yaml
vendored
10
.github/workflows/ci.yaml
vendored
@ -21,7 +21,13 @@ jobs:
|
|||||||
sudo rm -rf _book
|
sudo rm -rf _book
|
||||||
npm i vuepress --save-dev
|
npm i vuepress --save-dev
|
||||||
npm i
|
npm i
|
||||||
npm run vuepress:build || true
|
|
||||||
|
git clone https://github.com/docker-practice/.vuepress .vuepress2
|
||||||
|
cp -r .vuepress2/. .vuepress/
|
||||||
|
rm -rf .vuepress2
|
||||||
|
find . \( -path "./mesos" -o -path "./machine" -o -path "./swarm_mode" -o -path "./node_modules" -o -path "./.vuepress" -o -path "./_book" -o -path "./CHANGELOG.md" -o -path "./CONTRIBUTING.md" \) -prune -o -name "*.md" -exec sed -i 'N;2a\<AdSenseTitle/>\n' {} \;
|
||||||
|
|
||||||
|
npm run vuepress:build
|
||||||
echo "vuepress.docker-practice.com" > .vuepress/dist/CNAME
|
echo "vuepress.docker-practice.com" > .vuepress/dist/CNAME
|
||||||
|
|
||||||
cp -r _images .vuepress/dist
|
cp -r _images .vuepress/dist
|
||||||
@ -39,7 +45,7 @@ jobs:
|
|||||||
cp -r mesos/_images .vuepress/dist/mesos
|
cp -r mesos/_images .vuepress/dist/mesos
|
||||||
cp -r underly/_images .vuepress/dist/underly
|
cp -r underly/_images .vuepress/dist/underly
|
||||||
|
|
||||||
echo "include: [_images]" > .vuepress/dist/_config
|
echo "include: [_images]" > .vuepress/dist/_config.yml
|
||||||
- name: Upload Vuepress dist
|
- name: Upload Vuepress dist
|
||||||
uses: docker://pcit/pages
|
uses: docker://pcit/pages
|
||||||
if: github.repository == 'docker-practice/docker_practice'
|
if: github.repository == 'docker-practice/docker_practice'
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -9,5 +9,3 @@ _book/
|
|||||||
|
|
||||||
node_modules/
|
node_modules/
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
|
||||||
.vuepress/dist
|
|
||||||
|
3
.vuepress/.gitignore
vendored
Normal file
3
.vuepress/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
/*
|
||||||
|
!.gitignore
|
||||||
|
!config.js
|
@ -1,15 +1,6 @@
|
|||||||
const resolve = require("vuepress-theme-hope/resolve");
|
const resolve = require("vuepress-theme-hope/resolve");
|
||||||
|
|
||||||
module.exports = resolve({
|
module.exports = resolve({
|
||||||
themeConfig: {
|
|
||||||
blog: false,
|
|
||||||
comment: {
|
|
||||||
type: "disable", // 使用 Valine
|
|
||||||
appId: "...", // your appId
|
|
||||||
appKey: "...", // your appKey
|
|
||||||
},
|
|
||||||
pageInfo: false
|
|
||||||
},
|
|
||||||
title: 'Docker 从入门到实践',
|
title: 'Docker 从入门到实践',
|
||||||
base: '/',
|
base: '/',
|
||||||
head: [['script', {}, `
|
head: [['script', {}, `
|
||||||
@ -39,13 +30,57 @@ module.exports = resolve({
|
|||||||
]
|
]
|
||||||
],
|
],
|
||||||
plugins: {
|
plugins: {
|
||||||
sitemap: {
|
// sitemap: {
|
||||||
hostname: 'https://vuepress.mirror.docker-practice.com'
|
// hostname: 'https://vuepress.mirror.docker-practice.com'
|
||||||
},
|
// },
|
||||||
|
// 'git-log': {
|
||||||
|
// additionalArgs: '--no-merge',
|
||||||
|
// onlyFirstAndLastCommit: true,
|
||||||
|
// },
|
||||||
},
|
},
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
|
blog: false,
|
||||||
|
// comment: false,
|
||||||
|
comment: {
|
||||||
|
type: "disable", // 使用 Valine
|
||||||
|
appId: "...", // your appId
|
||||||
|
appKey: "...", // your appKey
|
||||||
|
},
|
||||||
|
pageInfo: [
|
||||||
|
// 'Author',
|
||||||
|
'ReadTime',
|
||||||
|
'Word',
|
||||||
|
],
|
||||||
|
footer: {
|
||||||
|
content: "",
|
||||||
|
display: true,
|
||||||
|
copyright: false,
|
||||||
|
},
|
||||||
|
searchPlaceholder: 'Search',
|
||||||
|
repo: 'yeasy/docker_practice',
|
||||||
|
repoLabel: 'GitHub',
|
||||||
|
hostname: 'https://vuepress.mirror.docker-practice.com',
|
||||||
|
// author: 'yeasy',
|
||||||
|
markdown: {
|
||||||
|
// lineNumbers: true,
|
||||||
|
// sub: true,
|
||||||
|
// footnote: true
|
||||||
|
enableAll: true
|
||||||
|
},
|
||||||
|
themeColor: {
|
||||||
|
blue: '#2196f3',
|
||||||
|
red: '#f26d6d',
|
||||||
|
green: '#3eaf7c',
|
||||||
|
orange: '#fb9b5f'
|
||||||
|
},
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
showAds: true,
|
||||||
|
|
||||||
docsRepo: 'yeasy/docker_practice',
|
docsRepo: 'yeasy/docker_practice',
|
||||||
docsDir: '/',
|
docsDir: '/',
|
||||||
|
docsBranch: 'master',
|
||||||
editLinks: true,
|
editLinks: true,
|
||||||
nav: [
|
nav: [
|
||||||
{
|
{
|
||||||
|
11
package.json
11
package.json
@ -5,12 +5,11 @@
|
|||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chalk": "^3.0.0",
|
"chalk": "^2.4.2",
|
||||||
"commander": "^4.0.1",
|
"commander": "^2.0.0",
|
||||||
"esm": "^3.2.25",
|
"esm": "^3.0.0",
|
||||||
"vuepress-plugin-container": "^2.1.2",
|
"vuepress-plugin-container": "^2.1.5",
|
||||||
"vuepress-plugin-sitemap": "^2.3.1",
|
"vuepress-theme-hope": "^0.8.0"
|
||||||
"vuepress-theme-hope": "^0.7.3"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
Loading…
Reference in New Issue
Block a user