├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── app.vue ├── assets └── css │ └── main.css ├── components ├── TheFooter.vue └── TheHeader.vue ├── config └── config.json ├── layouts └── default.vue ├── migrations └── 20220804091844-create-posts.js ├── models ├── index.js └── posts.js ├── nuxt.config.ts ├── package.json ├── pages └── index.vue ├── server └── api │ ├── posts.get.js │ └── posts.post.js └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/app.vue -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /components/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/components/TheFooter.vue -------------------------------------------------------------------------------- /components/TheHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/components/TheHeader.vue -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/config/config.json -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /migrations/20220804091844-create-posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/migrations/20220804091844-create-posts.js -------------------------------------------------------------------------------- /models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/models/index.js -------------------------------------------------------------------------------- /models/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/models/posts.js -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/pages/index.vue -------------------------------------------------------------------------------- /server/api/posts.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/server/api/posts.get.js -------------------------------------------------------------------------------- /server/api/posts.post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/server/api/posts.post.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anikghosh256/nuxt-mysql-sequelize/HEAD/tsconfig.json --------------------------------------------------------------------------------