25 lines
554 B
Markdown
25 lines
554 B
Markdown
# piggybank (piggybank)
|
|
|
|
An app to help families teach kids to keep track of their finances. It uses fake bank accounts with virtual cash that can be sent to each other or requested from each other.
|
|
|
|
## Install the dependencies
|
|
```bash
|
|
yarn
|
|
# or
|
|
npm install
|
|
```
|
|
|
|
### Start the app in development mode (hot-code reloading, error reporting, etc.)
|
|
```bash
|
|
quasar dev
|
|
```
|
|
|
|
|
|
### 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).
|