# Database (MariaDB/MySQL)
DB_HOST=localhost
DB_PORT=3306
DB_NAME=qr_review_platform
DB_USER=root
DB_PASSWORD=12345678
DATABASE_URL="mysql://b2_qr_review_platform:7O8qxnMd~-JrC2SH@localhost:3306/b2_qr_review_platform"

# Auth
JWT_SECRET=change-this-to-a-long-random-secret-min-16-chars

# App (use your Mac LAN IP so phones on same Wi-Fi can open QR links)
# This machine: 192.168.1.30 — dev server port must match (see package.json "dev" script)
PORT=3001
NEXT_PUBLIC_APP_URL=http://192.168.1.30:3001
# false = admin login works over HTTP on LAN; set true when behind HTTPS
COOKIE_SECURE=false

# AI (set at least one for real AI reviews; OpenAI is tried first)
OPENAI_API_KEY=
GEMINI_API_KEY=AIzaSyCRi47ttn1Ax3hF7C8D3AzSL77QVr34gkY
