patelrohanv.dev

disclaimer this project uses Vuetify 3 Alpha and is not intended for any kind of production use

Local Dev Setup

Install npm

Install npm

Install yarn

npm install --global yarn

Handy Yarn Commands

yarn add      # adds a package to use in your current package 
yarn init     # initializes the development of a package.
yarn install  # installs all the dependencies defined in a package.json file.
yarn publish  # publishes a package to a package manager.
yarn remove   # removes an unused package from your current package.

Install dependencies

yarn install

Run Dev Server

yarn run serve

Deploy (Netlify)

Set up Netlify

todo

Deploy (Github Pages)

Set up Github Pages

todo

Manual Deploy

yarn run build

The output will be written to /dist (make sure this is not ignored in your .gitignore)

Deploy (Docker)

todo

Unit Tests

Run Locally

yarn run test:unit

Lints and fixes files

yarn run lint

Buzz Words