Skip to content

Commit

Permalink
initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravprwl14 committed Apr 26, 2018
0 parents commit 9952488
Show file tree
Hide file tree
Showing 249 changed files with 72,752 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
Thumbs.db
db.json
*.log
node_modules/
public/
.deploy*/
src/_drafts
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2013-present Yuxi Evan You

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
92 changes: 92 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# vuejs.org

This site is built with [hexo](http://hexo.io/). Site content is written in Markdown format located in `src`. Pull requests welcome!

## Developing

``` bash
$ npm install
$ npm start # dev server at http://localhost:4000
```

## Deploying

The site is automatically deployed when commits land in `master`, via [Netlify](https://www.netlify.com/).

If you are the maintainer of a community translation fork and would like to deploy via Netlify instead of GitHub pages, please ping @yyx990803 in an issue to request a Netlify team membership and DNS update.

## On Translations

Translation for this documentation project are currently maintained in separate repositories forked from this original one.

### French

French translation is maintained by Vuejs-FR.

* Translation Repo - [/vuejs-fr/vuejs.org](https://github.com/vuejs-fr/vuejs.org)

### Italian

* Translation Repo - [/vuejs/it.vuejs.org](https://github.com/vuejs/it.vuejs.org)

### Japanese

Japanese translation is maintained by [Vue.js japan user group](https://github.com/vuejs-jp)

* Translation Repo - [/vuejs/jp.vuejs.org](https://github.com/vuejs/jp.vuejs.org)
* Primary maintainer - [kazupon](https://github.com/kazupon)
* Secondary Maintainers:
* [re-fort](https://github.com/re-fort)
* [potato4d](https://github.com/potato4d)

### Korean

Korean translation is maintained by [Vue.js Korean User group](https://github.com/vuejs-kr).

* Translation Repo - [/vuejs-kr/kr.vuejs.org](https://github.com/vuejs-kr/kr.vuejs.org)
* Primary maintainer - [ChangJoo Park](https://github.com/ChangJoo-Park)

### Mandarin

* Translation Repo - [/vuejs/cn.vuejs.org](https://github.com/vuejs/cn.vuejs.org)

### Persian (Farsi)

Persian translation is maintained by VueJS-fa.

* Translation Repo - [/vuejs-fa/fa.vuejs.org](https://github.com/vuejs-fa/fa.vuejs.org)
* Primary maintainer - [Pooya Parsa](https://github.com/pi0)

### Português-Br

Português-Br translation is maintained by [Vuejs-Br](https://github.com/vuejs-br).

* Translation Repo - [/vuejs-br/br.vuejs.org](https://github.com/vuejs-br/br.vuejs.org)

### Russian

Russian translation is maintained by Translation Gang.

* Translation Repo - [/translation-gang/ru.vuejs.org](https://github.com/translation-gang/ru.vuejs.org)
* Primary maintainer - [Grigoriy Beziuk](https://gbezyuk.github.io)

### Spanish

Spanish translation is maintained by VueJS-ES.

* Translation Repo - [/vuejs-es/vuejs.org](https://github.com/vuejs-es/vuejs.org)

### Vietnamese

Vietnamese translation is maintained by [Vue.js Vietnam User group](https://github.com/vuejs-vn/).

* Translation Repo: [/vuejs-vn/vuejs.org](https://github.com/vuejs-vn/vuejs.org)
* Primary maintainer - [phanan](https://github.com/phanan)

### Want to help with the translation?

If you feel okay with translating sorta alone, you can fork the repo, create a "work-in-progress" issue to inform others that you're doing the translation, and go for it.

If you are more of a team player, Translation Gang might be for you. Let us know somehow that you're ready to join this international open-source translators community. Feel free to contact [Grigoriy Beziuk](https://gbezyuk.github.io) or anybody else from [the team](https://github.com/orgs/translation-gang/people).

And thank you in advance ;)
189 changes: 189 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
# Hexo Configuration
## Docs: http://zespia.tw/hexo/docs/configuration.html
## Source: https://github.com/tommy351/hexo/

# Site
title: Vue.js
subtitle:
description: "The Progressive JavaScript Framework"
author: Evan You
email:
language:

# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: https://vuejs.org
root: /
permalink: :year/:month/:day/:title/
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code

# Directory
source_dir: src
public_dir: public

# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
auto_spacing: false # Add spaces between asian characters and western characters
titlecase: false # Transform title into titlecase
external_link: true # Open external links in new tab
max_open_file: 100
multi_thread: true
filename_case: 0
render_drafts: false
post_asset_folder: false
highlight:
enable: true
line_number: false
tab_replace:

# Category & Tag
default_category: uncategorized
category_map:
tag_map:

# Archives
## 2: Enable pagination
## 1: Disable pagination
## 0: Fully Disable
archive: 0
category: 0
tag: 0

# Server
## Hexo uses Connect as a server
## You can customize the logger format as defined in
## http://www.senchalabs.org/connect/logger.html
port: 4000
logger: false
logger_format:

# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: MMM D YYYY
time_format: H:mm:ss

# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page

# Disqus
disqus_shortname:

# Extensions
## Plugins: https://github.com/tommy351/hexo/wiki/Plugins
## Themes: https://github.com/tommy351/hexo/wiki/Themes
theme: vue
exclude_generator:

# Markdown
## https://github.com/chjj/marked
markdown:
gfm: true
pedantic: false
sanitize: false
tables: true
breaks: true
smartLists: true
smartypants: true

# Offline
## Config passed to sw-precache
## https://github.com/JLHwung/hexo-offline
offline:
maximumFileSizeToCacheInBytes: 10485760
staticFileGlobs:
- public/**/*.{js,html,css,png,jpg,jpeg,gif,svg,eot,ttf,woff,woff2,json,xml}
stripPrefix: public
verbose: true
runtimeCaching:
# Ad Sources - should be networkFirst
- urlPattern: /*
handler: networkFirst
options:
origin: sendgrid.sp1.convertro.com
- urlPattern: /*
handler: networkFirst
options:
origin: ad.doubleclick.net
# CDNs - should be cacheFirst, since they should be used specific versions so should not change
- urlPattern: /*
handler: cacheFirst
options:
origin: cdn.jsdelivr.net
- urlPattern: /*
handler: cacheFirst
options:
origin: fonts.googleapis.com
- urlPattern: /*
handler: cacheFirst
options:
origin: fonts.gstatic.com
- urlPattern: /*
handler: cacheFirst
options:
origin: cdnjs.cloudflare.com
- urlPattern: /*
handler: cacheFirst
options:
origin: maxcdn.bootstrapcdn.com

# Deployment
## Docs: http://zespia.tw/hexo/docs/deployment.html
deploy:
type: git
repository: git@github.com:vuejs/vuejs.org.git

feed:
type: atom
path: atom.xml
limit: 20

alias:
api/index.html: v2/api/index.html
guide/class-and-style.html: v2/guide/class-and-style.html
guide/comparison.html: v2/guide/comparison.html
guide/components.html: v2/guide/components.html
guide/computed.html: v2/guide/computed.html
guide/conditional.html: v2/guide/conditional.html
guide/custom-directive.html: v2/guide/custom-directive.html
guide/deployment.html: v2/guide/deployment.html
guide/events.html: v2/guide/events.html
guide/forms.html: v2/guide/forms.html
guide/index.html: v2/guide/index.html
guide/installation.html: v2/guide/installation.html
guide/instance.html: v2/guide/instance.html
guide/join.html: v2/guide/join.html
guide/list.html: v2/guide/list.html
guide/migration-vue-router.html: v2/guide/migration-vue-router.html
guide/migration-vuex.html: v2/guide/migration-vuex.html
guide/migration.html: v2/guide/migration.html
guide/mixins.html: v2/guide/mixins.html
guide/plugins.html: v2/guide/plugins.html
guide/reactivity.html: v2/guide/reactivity.html
guide/render-function.html: v2/guide/render-function.html
guide/routing.html: v2/guide/routing.html
guide/single-file-components.html: v2/guide/single-file-components.html
guide/ssr.html: v2/guide/ssr.html
guide/state-management.html: v2/guide/state-management.html
guide/syntax.html: v2/guide/syntax.html
guide/transitioning-state.html: v2/guide/transitioning-state.html
guide/transitions.html: v2/guide/transitions.html
guide/unit-testing.html: v2/guide/unit-testing.html
examples/commits.html: v2/examples/commits.html
examples/elastic-header.html: v2/examples/elastic-header.html
examples/firebase.html: v2/examples/firebase.html
examples/grid-component.html: v2/examples/grid-component.html
examples/hackernews.html: v2/examples/hackernews.html
examples/index.html: v2/examples/index.html
examples/modal.html: v2/examples/modal.html
examples/select2.html: v2/examples/select2.html
examples/svg.html: v2/examples/svg.html
examples/todomvc.html: v2/examples/todomvc.html
examples/tree-view.html: v2/examples/tree-view.html
Loading

0 comments on commit 9952488

Please sign in to comment.