Document SQLite persistence and local reset behavior

This commit is contained in:
2026-02-24 22:48:32 +01:00
parent 3c6dc5c0a9
commit f212636feb
3 changed files with 22 additions and 3 deletions

9
FAQ.md
View File

@@ -14,3 +14,12 @@ This keeps the first commit small while preserving CI discipline. Additional too
## Is frontend JavaScript handwritten?
No. Frontend source code lives in `RpgRoller/frontend/*.ts` and is compiled to `RpgRoller/wwwroot/*.js` for browser delivery.
## Where is backend state stored locally?
Backend state is persisted via EF Core + SQLite.
- Development default: `RpgRoller/App_Data/rpgroller.development.db`
- Non-development default: `RpgRoller/App_Data/rpgroller.db`
To start with a clean backend state, stop the app and remove the corresponding SQLite file.