This boilerplate is built on the top of Vue CLI 3.0. This provides an architecture which helps to write a flexible & modular large scale appliction with Vue.js
Below are the series of articles explaining the details of the architecture
npm install
npm run serve
npm run build
npm run test
npm run lint
.env
VUE_APP_API_BASE_URL=http://localhost:8080/
.env.production
VUE_APP_API_BASE_URL=/
.gitignore
.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?
.travis.yml
language: node_js
node_js:
- 'stable'
cache:
directories:
- 'node_modules'
script:
- npm run build
Author: arunredhu
Source: https://github.com/arunredhu/vuejs_boilerplate
License: MIT license