19 lines
557 B
Bash
19 lines
557 B
Bash
JWT_SECRET=hearts-secret-change-me
|
|
ADMIN_USERNAME=
|
|
|
|
PORT=4000
|
|
HTTPS_PORT=4443
|
|
|
|
# Point to Hokm's users.json so Hokm accounts work here too.
|
|
# When running via docker-compose this is the container path (matches the volume mount in docker-compose.yml).
|
|
# When running directly with `node server.js`, change to: /root/hokm/data/users.json
|
|
SHARED_USERS_FILE=/hokm-data/users.json
|
|
|
|
# Optional: Resend email API for verification codes
|
|
RESEND_API_KEY=
|
|
RESEND_FROM=noreply@example.com
|
|
|
|
# Optional: Cloudflare Turnstile CAPTCHA
|
|
TURNSTILE_SITE_KEY=
|
|
TURNSTILE_SECRET=
|