├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── auth.html ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── src ├── assets │ ├── logo.png │ ├── star.png │ └── star_off.png ├── components │ ├── BeerList.vue │ ├── EnterBeer.vue │ ├── Mainmenu.vue │ └── Overview.vue ├── helpers │ └── firebaseHelpers.js ├── main.js └── styles │ └── slick.css └── static └── .gitkeep /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/README.md -------------------------------------------------------------------------------- /auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/auth.html -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/assets/star.png -------------------------------------------------------------------------------- /src/assets/star_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/assets/star_off.png -------------------------------------------------------------------------------- /src/components/BeerList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/components/BeerList.vue -------------------------------------------------------------------------------- /src/components/EnterBeer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/components/EnterBeer.vue -------------------------------------------------------------------------------- /src/components/Mainmenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/components/Mainmenu.vue -------------------------------------------------------------------------------- /src/components/Overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/components/Overview.vue -------------------------------------------------------------------------------- /src/helpers/firebaseHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/helpers/firebaseHelpers.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/main.js -------------------------------------------------------------------------------- /src/styles/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okstaticzero/vuejs-firebase/HEAD/src/styles/slick.css -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------