Skip to content

Commit

Permalink
start front template
Browse files Browse the repository at this point in the history
  • Loading branch information
radames committed Sep 17, 2018
0 parents commit 08d1969
Show file tree
Hide file tree
Showing 51 changed files with 18,228 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.DS_Store
node_modules

# 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*
dist/
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js
node_js:
- node
script:
- npm run travis
deploy:
provider: pages
verbose: true
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: dist
keep-history: false
target-branch: gh-pages
on:
branch: master
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# quiz-elections

## 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/app'
]
}
Loading

0 comments on commit 08d1969

Please sign in to comment.