├── .gitignore ├── README.md ├── deploy-docs.sh ├── docs ├── README.md ├── SUMMARY.md ├── backend.md ├── commands.md ├── e2e.md ├── env.md ├── linter.md ├── pre-processors.md ├── prerender.md ├── proxy.md ├── static.md ├── structure.md └── unit.md ├── meta.js ├── package.json └── template ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── build ├── build.js ├── dev-client.js ├── dev-server.js ├── utils.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Hello.vue │ └── Navbar.vue ├── i18n │ └── Hello.js ├── main.js ├── router.js └── store.js ├── static └── .gitkeep └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── index.js ├── karma.conf.js └── specs └── Hello.spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | docs/_book 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/README.md -------------------------------------------------------------------------------- /deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/deploy-docs.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/backend.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/e2e.md -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/env.md -------------------------------------------------------------------------------- /docs/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/linter.md -------------------------------------------------------------------------------- /docs/pre-processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/pre-processors.md -------------------------------------------------------------------------------- /docs/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/prerender.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/static.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/structure.md -------------------------------------------------------------------------------- /docs/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/docs/unit.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/meta.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/README.md -------------------------------------------------------------------------------- /template/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/build/build.js -------------------------------------------------------------------------------- /template/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/build/dev-client.js -------------------------------------------------------------------------------- /template/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/build/dev-server.js -------------------------------------------------------------------------------- /template/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/build/utils.js -------------------------------------------------------------------------------- /template/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/build/webpack.base.conf.js -------------------------------------------------------------------------------- /template/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /template/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /template/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/config/dev.env.js -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/config/index.js -------------------------------------------------------------------------------- /template/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /template/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/config/test.env.js -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/assets/logo.png -------------------------------------------------------------------------------- /template/src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/components/Hello.vue -------------------------------------------------------------------------------- /template/src/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/components/Navbar.vue -------------------------------------------------------------------------------- /template/src/i18n/Hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/i18n/Hello.js -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/router.js -------------------------------------------------------------------------------- /template/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/src/store.js -------------------------------------------------------------------------------- /template/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /template/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /template/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/e2e/runner.js -------------------------------------------------------------------------------- /template/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/e2e/specs/test.js -------------------------------------------------------------------------------- /template/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/unit/.eslintrc -------------------------------------------------------------------------------- /template/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/unit/index.js -------------------------------------------------------------------------------- /template/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/unit/karma.conf.js -------------------------------------------------------------------------------- /template/test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssouron/vuestart/HEAD/template/test/unit/specs/Hello.spec.js --------------------------------------------------------------------------------