Skip to content

Commit

Permalink
Add files for initial deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
rmjordas committed Jun 4, 2018
1 parent ffb3898 commit b5fa367
Show file tree
Hide file tree
Showing 46 changed files with 14,376 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
35 changes: 35 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Contributing Guide

1. Make sure you put things in the right category!
2. Always add your items to the end of a list. To be fair, the order is first-come-first-serve.
3. If you think something belongs in the wrong category, or think there needs to be a new category, feel free to edit things too.

## Projects using Vue.js

Make sure you put things in the right category. There are two main categories:

- Open Source
- Apps/Websites

### Open source

Open Source section gives the possibility for developers to contribute and be a part of an open source project using their knowledge of the Vue.js.
You should put your project in this category if the following conditions are true:

- The documentation (README) contains a description of the project, illustration of the project with a demo or screenshots and a CONTRIBUTING section.
- The documentation is in English.
- The project is active and maintained.
- The project accepts contributions.

The link provided should be the link of the GitHub repository, not the demo.
If you consider your project finished, and it does not need any contributions, consider the apps/website category.

### Apps/Websites

Apps/Websites gives the opportunity to showcase the awesome things we can build with Vue.js.
You should put your app/website in this category if the following conditions are true:

- The website is available without errors or SSL certificate problems, and load in a reasonable amount of time.
- The website is using Vue.js intensively. It should detect Vue with [vue-devtools](https://github.com/vuejs/vue-devtools).
- If you cannot detect Vue with `vue-devtools` due to work at non public pages (e.g. for enterprise website), you can send Pull Request with screenshot that detected it.
- The website is original and not too simple. For that reason, blogs and simple landing pages are rejected.
67 changes: 67 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless
4 changes: 4 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"default": true,
"MD013": { "line_length": 1000 }
}
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: node_js

node_js:
- "lts/*"

cache:
directories:
- "node_modules"

install:
- npm install
- npm run build

script:
- npm test

deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
target-branch: gh-pages
keep-history: true
local-dir: .vuepress/dist
on:
branch: master
70 changes: 70 additions & 0 deletions .vuepress/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
module.exports = {
title: 'Awesome Vue.js',
description: '🎉 A curated list of awesome things related to Vue.js',
head: [
['link', { rel: 'icon', href: `/logo.png` }],
['link', { rel: 'manifest', href: '/manifest.json' }],
['meta', { name: 'theme-color', content: '#3eaf7c' }],
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }],
['link', { rel: 'apple-touch-icon', href: `/icons/apple-touch-icon-152x152.png` }],
['link', { rel: 'mask-icon', href: '/icons/safari-pinned-tab.svg', color: '#3eaf7c' }],
['meta', { name: 'msapplication-TileImage', content: '/icons/msapplication-icon-144x144.png' }],
['meta', { name: 'msapplication-TileColor', content: '#fff' }]
],
serviceWorker: true,
base: '/awesome-vue/',
themeConfig: {
repo: 'rmjordas/awesome-vue',
editLinks: true,
lastUpdated: 'Last Updated',
nav: [],
sidebar: [
{
title: 'Resources',
collapsable: false,
children: [
'/resources/official-resources',
'/resources/external-resources',
'/resources/job-portal',
'/resources/community',
'/resources/conferences',
'/resources/podcasts',
'/resources/youtube-channels',
'/resources/official-examples',
'/resources/tutorials',
'/resources/examples',
'/resources/books',
],
},
{
title: 'Projects Using Vue.js',
collapsable: false,
children: [
'/projects-using-vue-js/open-source',
'/projects-using-vue-js/commercial-products',
'/projects-using-vue-js/apps-websites',
'/projects-using-vue-js/interactive-experiences',
'/projects-using-vue-js/enterprise-usage',
'/projects-using-vue-js/a11y',
],
},
{
title: 'Components and Libraries',
collapsable: false,
children: [
'/components-and-libraries/ui-components',
'/components-and-libraries/ui-layout',
'/components-and-libraries/frameworks',
'/components-and-libraries/ui-utilities',
'/components-and-libraries/utilities',
'/components-and-libraries/integrations',
'/components-and-libraries/dev-tools',
'/components-and-libraries/scaffold',
'/components-and-libraries/runtime',
'/components-and-libraries/prerendering',
],
},
]
}
};
Binary file added .vuepress/public/hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/icons/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/icons/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/icons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/icons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/icons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/icons/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions .vuepress/public/icons/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions .vuepress/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "Awesome Vue.js",
"short_name": "AwesomeVue",
"icons": [
{
"src": "/awesome-vue/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/awesome-vue/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "/index.html",
"display": "standalone",
"background_color": "#fff",
"orientation": "portrait",
"theme_color": "#3eaf7c"
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
home: true
heroImage: /hero.png
actionText: Get Started →
actionLink: /resources/official-resources
---
Loading

0 comments on commit b5fa367

Please sign in to comment.