├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── database.rules.json ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .gitignore ├── index.js ├── package-lock.json └── package.json ├── jsconfig.json ├── nuxt.config.js ├── package.json ├── src ├── assets │ ├── README.md │ ├── buefy.png │ └── scss │ │ ├── _mixin.scss │ │ ├── customBuefy.scss │ │ └── lib.scss ├── components │ ├── ArticleCompornent.vue │ ├── Card.vue │ ├── CommentCompornent.vue │ ├── LoginModal.vue │ ├── Logo.vue │ ├── README.md │ └── createRoomModal.vue ├── layouts │ ├── README.md │ └── default.vue ├── middleware │ ├── README.md │ └── authenticated.js ├── pages │ ├── README.md │ ├── index.vue │ └── room │ │ └── _id.vue ├── plugins │ ├── README.md │ ├── commonModule.js │ └── firebase.js ├── static │ ├── README.md │ └── favicon.ico └── store │ ├── README.md │ └── index.js └── storage.rules /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/README.md -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/database.rules.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/functions/package.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/jsconfig.json -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/assets/README.md -------------------------------------------------------------------------------- /src/assets/buefy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/assets/buefy.png -------------------------------------------------------------------------------- /src/assets/scss/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/assets/scss/_mixin.scss -------------------------------------------------------------------------------- /src/assets/scss/customBuefy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/assets/scss/customBuefy.scss -------------------------------------------------------------------------------- /src/assets/scss/lib.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/assets/scss/lib.scss -------------------------------------------------------------------------------- /src/components/ArticleCompornent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/components/ArticleCompornent.vue -------------------------------------------------------------------------------- /src/components/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/components/Card.vue -------------------------------------------------------------------------------- /src/components/CommentCompornent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/components/CommentCompornent.vue -------------------------------------------------------------------------------- /src/components/LoginModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/components/LoginModal.vue -------------------------------------------------------------------------------- /src/components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/components/Logo.vue -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/components/createRoomModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/components/createRoomModal.vue -------------------------------------------------------------------------------- /src/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/layouts/README.md -------------------------------------------------------------------------------- /src/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/layouts/default.vue -------------------------------------------------------------------------------- /src/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/middleware/README.md -------------------------------------------------------------------------------- /src/middleware/authenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/middleware/authenticated.js -------------------------------------------------------------------------------- /src/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/pages/README.md -------------------------------------------------------------------------------- /src/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/pages/index.vue -------------------------------------------------------------------------------- /src/pages/room/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/pages/room/_id.vue -------------------------------------------------------------------------------- /src/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/plugins/README.md -------------------------------------------------------------------------------- /src/plugins/commonModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/plugins/commonModule.js -------------------------------------------------------------------------------- /src/plugins/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/plugins/firebase.js -------------------------------------------------------------------------------- /src/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/static/README.md -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/store/README.md -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/src/store/index.js -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FujiyamaYuta/nuxt-firebase-project/HEAD/storage.rules --------------------------------------------------------------------------------