Creating a question and answer app for to practicalize what I learnt in Vue & Nuxt
# install dependencies
$ npm run install
# Run Json-server-auth (I used json server auth to for authentication and database access. Since I'm yet to implement backend)
$ json-server db.json -m ./node_modules/json-server-auth
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm run start
# generate static project
$ npm run generateFor detailed explanation on how things work, check out Nuxt.js docs.