Skip to content

Commit

Permalink
add page
Browse files Browse the repository at this point in the history
  • Loading branch information
luisDanielRoviraContreras committed Aug 8, 2018
1 parent 84138e6 commit 4cccef8
Show file tree
Hide file tree
Showing 40 changed files with 15,658 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .browserslistrc
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not ie <= 8
9 changes: 9 additions & 0 deletions .editorconfig
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = espacio
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
17 changes: 17 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'@vue/standard'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}
21 changes: 21 additions & 0 deletions .gitignore
@@ -0,0 +1,21 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
5 changes: 5 additions & 0 deletions .postcssrc.js
@@ -0,0 +1,5 @@
module.exports = {
plugins: {
autoprefixer: {}
}
}
22 changes: 21 additions & 1 deletion README.md
@@ -1 +1,21 @@
# devuseful
# lusaxweb-assets

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```
5 changes: 5 additions & 0 deletions babel.config.js
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}
25 changes: 25 additions & 0 deletions deploy.sh
@@ -0,0 +1,25 @@
#!/usr/bin/env sh

# abort on errors
set -e

# build
npm run build

# navigate into the build output directory
cd dist

# if you are deploying to a custom domain
# echo 'www.example.com' > CNAME

git init
git add -A
git commit -m 'deploy'

# if you are deploying to https://<USERNAME>.github.io
# git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git master

# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f git@github.com:lusaxweb/devuseful.git master:gh-pages

cd -

0 comments on commit 4cccef8

Please sign in to comment.