Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.54 KB

README.md

File metadata and controls

50 lines (41 loc) · 1.54 KB

vusic-player

This is a Vue application created during the certification course by ZTM at Udemy.

Technologies and Packages

I am using several packages and plugins, but the more important are the ones below.

Installation and Development

  • Move the .env.example file to .env.
  • Configure the .env file with your Firebase credentials.
  • Install the dependencies with the command below.
yarn install
  • Run the application on devel mode with the command below.
yarn run dev
  • If you want to analyze your code with Eslint and fix the detected issues, run the command below.
yarn run lint
  • For type checking using vue-tsc, execute the command below.
yarn run typecheck

Build Project

To create the static files, you have to run the command below.

yarn run build

To Do