17 lines
586 B
Plaintext
17 lines
586 B
Plaintext
# Public hostname for HTTPS (Caddy will obtain a Let's Encrypt cert automatically).
|
|
# Leave unset or set to "localhost" for local dev (self-signed cert).
|
|
HATCH_HOSTNAME=hatch.example.com
|
|
|
|
# Base URL for SSE and self-referencing links within the UI.
|
|
HATCH_BASE_URL=https://hatch.example.com
|
|
|
|
# AWS Rekognition Configuration (optional — set FACE_SERVICE_ENABLED=true to enable)
|
|
FACE_SERVICE_ENABLED=false
|
|
AWS_REGION=us-east-1
|
|
REKOGNITION_COLLECTION=hatch-faces
|
|
REKOGNITION_MAX_FACES=10
|
|
REKOGNITION_THRESHOLD=80.0
|
|
|
|
# Redis URL (optional — used for rate-limit backing store)
|
|
REDIS_URL=
|