MyCookbook HQ Web application built with Vue 3, Nuxt 3 and Typescript
Which helps to maintain project code quality.
Make sure you have installed Node.js 16.11.0 or higher on your machine. You can use nvm to manage multiple node version on your machine.
nvm install 16.11.0
nvm use
You can setup this project using npm package.
# ssh
git clone git@github.com:mycookbook/web-app.git
cd web-app
Make sure to install the dependencies:
# npm
npm install
Start the development server on http://localhost:3000
# npm
npm run dev
Build the application for production
# npm
npm run build
Locally preview production build
# npm
npm run preview
# npm
npm run lint
# npm
npm run lint:fix
# npm
npm run lint:style
# npm
npm run lint:style:fix
Open interactive terminal to write conventional commit message
# npm
npm run commit
Create a release tag and generates change log based on commit history
# npm
npm run release
- Checkout the deployment documentation for more information.