├── README.md ├── client ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .postcssrc.js ├── build │ ├── build.js │ ├── check-versions.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ └── prod.env.js ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── apollo │ │ └── index.js │ ├── components │ │ └── welcomeComponent.vue │ ├── constants │ │ └── graphql.js │ ├── main.js │ ├── router │ │ └── index.js │ └── store │ │ └── index.js └── static │ ├── .gitkeep │ └── favicon.png └── server ├── .babelrc ├── package.json └── src ├── graphql ├── resolvers │ └── resolvers.js └── types │ └── types.js ├── models └── index.js └── server.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/README.md -------------------------------------------------------------------------------- /client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/.babelrc -------------------------------------------------------------------------------- /client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/.editorconfig -------------------------------------------------------------------------------- /client/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/.eslintignore -------------------------------------------------------------------------------- /client/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/.eslintrc.js -------------------------------------------------------------------------------- /client/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/.postcssrc.js -------------------------------------------------------------------------------- /client/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/build/build.js -------------------------------------------------------------------------------- /client/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/build/check-versions.js -------------------------------------------------------------------------------- /client/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/build/utils.js -------------------------------------------------------------------------------- /client/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/build/vue-loader.conf.js -------------------------------------------------------------------------------- /client/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/build/webpack.base.conf.js -------------------------------------------------------------------------------- /client/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /client/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /client/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/config/dev.env.js -------------------------------------------------------------------------------- /client/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/config/index.js -------------------------------------------------------------------------------- /client/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/index.html -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/src/App.vue -------------------------------------------------------------------------------- /client/src/apollo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/src/apollo/index.js -------------------------------------------------------------------------------- /client/src/components/welcomeComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/src/components/welcomeComponent.vue -------------------------------------------------------------------------------- /client/src/constants/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/src/constants/graphql.js -------------------------------------------------------------------------------- /client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/src/main.js -------------------------------------------------------------------------------- /client/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/src/router/index.js -------------------------------------------------------------------------------- /client/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/src/store/index.js -------------------------------------------------------------------------------- /client/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/client/static/favicon.png -------------------------------------------------------------------------------- /server/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/server/.babelrc -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/graphql/resolvers/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/server/src/graphql/resolvers/resolvers.js -------------------------------------------------------------------------------- /server/src/graphql/types/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/server/src/graphql/types/types.js -------------------------------------------------------------------------------- /server/src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/server/src/models/index.js -------------------------------------------------------------------------------- /server/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romucci/boilerplate-vue-apollo-graphql-mongodb/HEAD/server/src/server.js --------------------------------------------------------------------------------