# Conflicts: # .gitignore # backend/vite.config.js # frontend/package-lock.json
50 lines
725 B
Markdown
50 lines
725 B
Markdown
# Thats me App (thatsme-quasar)
|
|
|
|
Thats me Quasar Project
|
|
|
|
## Install the dependencies
|
|
|
|
```bash
|
|
yarn
|
|
# or
|
|
npm install
|
|
```
|
|
|
|
## erste installation
|
|
npm i -g @quasar/cli
|
|
npm init quasar@latest
|
|
|
|
## Now, do you want to be able to run Quasar CLI commands directly (eg. $ quasar dev/build)
|
|
npm i -g @quasar/cli
|
|
|
|
### 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).
|