Skip to content

Commit ce5296a

Browse files
committed
init
0 parents  commit ce5296a

17 files changed

+107
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.DS_Store
3+
_book

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ssr.vuejs.org

LANGS.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* [English](en/)

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# vue-ssr-docs
2+
3+
Documentation for `vue-server-renderer`. Hosted at [ssr.vuejs.org](https://ssr.vuejs.org).
4+
5+
## Development
6+
7+
``` bash
8+
# install gitbook CLI
9+
npm install gitbook-cli -g
10+
11+
# install local plugins
12+
npm install
13+
14+
# serve
15+
npm run dev
16+
```

book.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"gitbook": ">3.0.0",
3+
"plugins": ["edit-link", "theme-vuejs@git+https://github.com/pearofducks/gitbook-plugin-theme-vuejs.git", "-fontsettings", "github"],
4+
"pluginsConfig": {
5+
"edit-link": {
6+
"base": "https://github.com/vuejs/vue-ssr-docs/edit/master/",
7+
"label": "Edit This Page"
8+
},
9+
"github": {
10+
"url": "https://github.com/vuejs/vue-ssr-docs/"
11+
}
12+
},
13+
"links": {
14+
"sharing": {
15+
"facebook": false,
16+
"twitter": false
17+
}
18+
}
19+
}

deploy.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
rm -rf _book
2+
gitbook install
3+
gitbook build
4+
mkdir _book
5+
cp CNAME _book/CNAME
6+
cd _book
7+
git init
8+
git add -A
9+
git commit -m 'update book'
10+
git push -f [email protected]:vuejs/vue-ssr-docs.git master:gh-pages

en/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# vue-server-renderer
2+
3+
Hello baby

en/SUMMARY.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# vue-server-renderer
2+
3+
- [API](api.md)
4+
- [Renderer Options](options.md)
5+
- [Why Use Bundle Renderer?](bundle-renderer.md)
6+
- [Creating the Server Bundle](server-bundle.md)
7+
- [Creating the Client Manifest](client-manifest.md)
8+
- [Caching](caching.md)
9+
- [Client Side Hydration](hydration.md)

en/api.md

Whitespace-only changes.

en/bundle-renderer.md

Whitespace-only changes.

en/caching.md

Whitespace-only changes.

en/client-manifest.md

Whitespace-only changes.

en/hydration.md

Whitespace-only changes.

en/options.md

Whitespace-only changes.

en/server-bundle.md

Whitespace-only changes.

package.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "vue-ssr-docs",
3+
"version": "1.0.0",
4+
"private": true,
5+
"description": "docs for vue-server-renderer",
6+
"scripts": {
7+
"dev": "gitbook serve",
8+
"deploy": "bash deploy.sh"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/vuejs/vue-ssr-docs.git"
13+
},
14+
"keywords": [
15+
"vue",
16+
"ssr",
17+
"docs"
18+
],
19+
"author": "Evan You",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/vuejs/vue-ssr-docs/issues"
23+
},
24+
"homepage": "https://github.com/vuejs/vue-ssr-docs#readme",
25+
"devDependencies": {
26+
"gitbook-plugin-edit-link": "^2.0.2",
27+
"gitbook-plugin-github": "^3.0.0",
28+
"gitbook-plugin-theme-vuejs": "pearofducks/gitbook-plugin-theme-vuejs"
29+
}
30+
}

yarn.lock

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
gitbook-plugin-edit-link@^2.0.2:
6+
version "2.0.2"
7+
resolved "https://registry.yarnpkg.com/gitbook-plugin-edit-link/-/gitbook-plugin-edit-link-2.0.2.tgz#d8fcd927eced81e7a662a72d59db609eafd7e72f"
8+
9+
gitbook-plugin-github@^3.0.0:
10+
version "3.0.0"
11+
resolved "https://registry.yarnpkg.com/gitbook-plugin-github/-/gitbook-plugin-github-3.0.0.tgz#67457df98a57ea8ef9b2518b88340db370a5317b"
12+
13+
gitbook-plugin-theme-vuejs@pearofducks/gitbook-plugin-theme-vuejs:
14+
version "0.0.2"
15+
resolved "https://codeload.github.com/pearofducks/gitbook-plugin-theme-vuejs/tar.gz/61c9bb8b168814c32331e63b3b9f1dd9266d8452"

0 commit comments

Comments
 (0)