|
|
@@ -3,6 +3,7 @@
|
|
|
A skeleton for future projects
|
|
|
|
|
|
## Install the dependencies
|
|
|
+
|
|
|
```bash
|
|
|
yarn
|
|
|
# or
|
|
|
@@ -10,32 +11,63 @@ npm install
|
|
|
```
|
|
|
|
|
|
### Start the app in development mode (hot-code reloading, error reporting, etc.)
|
|
|
+
|
|
|
```bash
|
|
|
quasar dev
|
|
|
```
|
|
|
|
|
|
-
|
|
|
### Lint the files
|
|
|
+
|
|
|
```bash
|
|
|
yarn lint
|
|
|
# or
|
|
|
npm run lint
|
|
|
```
|
|
|
|
|
|
-
|
|
|
### Format the files
|
|
|
+
|
|
|
```bash
|
|
|
yarn format
|
|
|
# or
|
|
|
npm run format
|
|
|
```
|
|
|
|
|
|
-
|
|
|
-
|
|
|
### Build the app for production
|
|
|
+
|
|
|
```bash
|
|
|
quasar build
|
|
|
```
|
|
|
|
|
|
### Customize the configuration
|
|
|
+
|
|
|
See [Configuring quasar.config.js](https://v2.quasar.dev/quasar-cli-vite/quasar-config-js).
|
|
|
+
|
|
|
+## PR Reference:
|
|
|
+
|
|
|
+```md
|
|
|
+## O que foi feito Descreva resumidamente o que mudou e por quê.
|
|
|
+
|
|
|
+## Tipo de mudança
|
|
|
+
|
|
|
+- [ ] Nova feature
|
|
|
+- [ ] Correção de bug
|
|
|
+- [ ] Refatoração
|
|
|
+- [ ] Documentação
|
|
|
+- [ ] Outro:
|
|
|
+
|
|
|
+## Como testar
|
|
|
+
|
|
|
+1. Acesse ...
|
|
|
+2. Faça ...
|
|
|
+3. Verifique que ...
|
|
|
+
|
|
|
+## Checklist antes do merge
|
|
|
+
|
|
|
+- [ ] Testei localmente
|
|
|
+- [ ] Não quebrei nenhum fluxo existente
|
|
|
+- [ ] Adicionei/atualizei testes se necessário
|
|
|
+- [ ] Variáveis de ambiente documentadas
|
|
|
+- [ ] Sem console.log ou código de debug
|
|
|
+
|
|
|
+## Ticket relacionado Refs:
|
|
|
+```
|