# If it is not installed nodemon - please install
$ npm i -g nodemon
# install dependencies client
$ yarn install
# install dependencies server
$ cd server
$ yarn install
$ cd ..
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate
For detailed explanation on how things work, check out Nuxt.js docs.
# install dependencies client
$ npm i
# install dependencies server
$ cd server
$ npm i
$ cd ..
# run serve
$ npm run dev