# Admin (`admin.thewordquest.com`)

Platform operations for The Word Quest: path editors, CMS-facing data, and the local Firestore stand-in. This is **not** the parent/teacher portal (see `../portal/`).

## Serve locally

```bash
cd admin
python3 -m http.server 8001
```

Open http://localhost:8001/

`assets/` is a symlink to `../app/assets` so map images and trail waypoints work when serving this folder alone.

## Pillars

- **Path tools** — `path-waypoints.html` (island trail milestones)
- **Database stand-in** — `database/` JSON docs + `js/database-client.js`
- **Product inventory** — `ADMIN_CONSOLE.md`

## Docs

- [ADMIN_CONSOLE.md](ADMIN_CONSOLE.md) — screens and data model
- [database/README.md](database/README.md) — store conventions
- [../docs/APPS.md](../docs/APPS.md) — monorepo map of app / admin / portal
