Go to file
2023-09-12 21:20:26 +02:00
.github/workflows Fixed & working Github actions build on all OSs 2023-08-26 23:33:00 +02:00
.vscode Added support for electron testing via Playwright 2023-09-03 00:16:57 +02:00
interfaces added prod devtools support, optimizations 2023-09-12 21:20:26 +02:00
public FA mascot component, added prop testing support 2023-09-10 15:49:33 +02:00
src added prod devtools support, optimizations 2023-09-12 21:20:26 +02:00
src-electron added prod devtools support, optimizations 2023-09-12 21:20:26 +02:00
test/playwright-e2e FA mascot component, added prop testing support 2023-09-10 15:49:33 +02:00
.editorconfig First new FA commit 2021-07-09 18:38:42 +02:00
.eslintignore First commit of the 2023 version of FA 2023-08-19 10:43:21 +02:00
.eslintrc.cjs Removed Cypres, added proper Playwright tests 2023-09-03 20:36:10 +02:00
.gitignore Playwright testing setup improvement 2023-09-03 22:48:18 +02:00
index.html First commit of the 2023 version of FA 2023-08-19 10:43:21 +02:00
package.json added prod devtools support, optimizations 2023-09-12 21:20:26 +02:00
playwright.config.ts Playwright testing setup improvement 2023-09-03 22:48:18 +02:00
postcss.config.cjs added prod devtools support, optimizations 2023-09-12 21:20:26 +02:00
quasar.config.js Github build workflow fixes 2023-08-26 23:01:46 +02:00
quasar.extensions.json Removed Cypres, added proper Playwright tests 2023-09-03 20:36:10 +02:00
quasar.testing.json Removed Cypres, added proper Playwright tests 2023-09-03 20:36:10 +02:00
README.md Adjusted readme to explain Playwright tests 2023-09-03 22:52:28 +02:00
tsconfig.json Added global window control buttons component 2023-08-27 18:52:26 +02:00
vitest.config.ts Removed Cypres, added proper Playwright tests 2023-09-03 20:36:10 +02:00
yarn.lock Removed Cypres, added proper Playwright tests 2023-09-03 20:36:10 +02:00

Fantasia Archive (fantasia-archive)

A worldbuilding database manager

Use Yarn 1.22.19 or stuff is gonna bug out.

Make sure you are running this with Node v16.17.0 ("nvm" is great for these older versions)

Playwright tests run from built, live version of FA. Therefore, to run them, you need to localy build the app on your machine first - Both on first time using them and every time something is changed in the source code.

Install Quasar CLI for smoothest experience

Details found here: https://quasar.dev/start/quasar-cli
Ensure that the Yarn global install location is in your PATH after install. (details in article linked above)
yarn global add @quasar/cli

Install the dependencies and set up the project

yarn

Start the app in Quasar development mode (hot-code reloading, error reporting, etc.)

quasar dev -m electron

Build the app for production

quasar build

Testing:

Unit test - with pretty web-UI

test:unit:ui

Unit test - Without any UI, fully in a terminal

test:unit:ci

Component test - via Playwright

test:component

E2E test - via Playwright

test:e2e

Customize the configuration

See Configuring quasar.config.js.