Before you start, you will need to have Git and a code editor such as VSCode or Intellij installed on your machine.
# Clone this repository
$ git clone https://github.com/Joabsonlg/quasar-template.git your-project-name
# Install the dependencies
npm install
# Start the app in development mode (hot-code reloading, error reporting, etc.)
quasar dev
To make changes to the code:
# Create a branch
$ git checkout -b branch-name
# Make the changes to the code and upload them to the repository
$ git add .
$ git commit -m "Summary of my changes"
$ git push -u origin branch-name
#In github, create a pull request to the master branch
Be sure to do the appropriate tests.