## Hosting Quick Start

1. Unzip the archive.
2. Copy `.env.example` to `.env` if your host does not already provide environment variables.
3. Set at least:
   - `DATABASE_URL=file:./truyen-viet.db`
   - `PAYLOAD_SECRET=...`
   - `NEXT_PUBLIC_SERVER_URL=https://your-domain.example`
   - `CRON_SECRET=...`
   - `PREVIEW_SECRET=...`
4. Run `npm install`.
5. Run `npm run production`.

The SQLite database file `truyen-viet.db` and uploaded media in `public/media/` are included in the archive.

Notes:
- `npm run production` builds the app and then starts the standalone production server on port `3000` by default.
- Set `PORT` in the hosting environment if your provider requires a different port.
- Keep `public/media/` writable if the app needs to accept new uploads.
