Skip to content

Commit aa67061

Browse files
committed
update book
0 parents  commit aa67061

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+11819
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.DS_Store
3+
_book
4+
test

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ssr.vuejs.org

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# vue-ssr-docs
2+
3+
Documentation for `vue-server-renderer`. Currently WIP and pending Vue 2.3.0 release - will be 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+
```

deploy.sh

Lines changed: 10 additions & 0 deletions
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

0 commit comments

Comments
 (0)