fantasia-archive/README.md

46 lines
797 B
Markdown
Raw Normal View History

# Fantasia archive (fantasiaarchive)
2021-01-31 02:43:13 +13:00
A database manager for world building
## Install the dependencies
2021-01-31 02:43:13 +13:00
```bash
npm install
```
### Start the app in development mode (hot-code reloading, error reporting, etc.)
2021-01-31 02:43:13 +13:00
```bash
npm dev
2021-01-31 02:43:13 +13:00
```
### Build the app for production
2021-01-31 02:43:13 +13:00
```bash
npm build
2021-01-31 02:43:13 +13:00
```
### Lint the files (installing ES-lint for insta-checking recommended)
2021-01-31 02:43:13 +13:00
```bash
npm run lint
```
### New object files go into
```
src\databaseManager\blueprints
```
Do not forget to add default export to the newly created files, the program will auto-load all files in the directory that way.
### Document configuration details can be found in the following file
```
I_Blueprint.ts
2021-01-31 02:43:13 +13:00
```
### Customize the configuration
2021-01-31 02:43:13 +13:00
See [Configuring quasar.conf.js](https://quasar.dev/quasar-cli/quasar-conf-js).