- The project is using Kanban as an Agile framework.
- To raise a bug or submit a feature request, please open an issue.
- If you want to work on an existing issue please ask to be assigned, this will help to let others know you'll be working on it.
- The pull request name must be titled as below: prefix(#issue_number): issue_name. See an example
- Use one of the prefixes defined below:
- build(#): Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
- chore(#): Updating tasks etc; no production code change
- doc(#): Documentation only changes
- feat(#): for new features
- fix(#): bug fixes
- i18n(#): translations related
- perf(#): A code change that improves performance
- refactor(#): A code change that neither fixes a bug nor adds a feature
- style(#): Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
This Vue 3 project was initialized with Vite.
- After cloning the repo, run:
$ npm install
# Compile and Hot-Reload for Development
npm run dev
# Compile and Minify for Production
npm run build
# Lint with ESLint
npm run lint