56 lines
963 B
Markdown
56 lines
963 B
Markdown
# Thats me App (thatsme-quasar)
|
|
|
|
Thats me Quasar Project
|
|
|
|
## Version
|
|
|
|
Aktuelle Frontend-Version: `0.0.1`
|
|
|
|
Die sichtbare App-Version wird in `src/config/appVersion.js` gepflegt und muss bei weiteren Entwicklungsschritten zusammen mit `package.json` und relevanten Dokumenten aktualisiert werden.
|
|
|
|
## 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).
|