Admin dashboard for managing the Feed the Realm game platform. Built with React, TypeScript, and Vite.
# Install dependencies
pnpm install
# Start the development server
pnpm dev# Type-check and build for production
pnpm build
# Preview the production build locally
pnpm previewpnpm lintsrc/
├── pages/ # Top-level route views
│ ├── Login.tsx
│ ├── Dashboard.tsx
│ ├── Users.tsx
│ ├── Worlds.tsx
│ ├── Metrics.tsx
│ └── Exports.tsx
├── components/ # Shared UI components (Sidebar, Topbar, Dialogs, etc.)
├── services/ # API client and per-domain service modules
└── assets/ # Static assets
The app connects to the core-service API. Set the base URL in src/services/config.ts or via environment variables before building.