Files
tautkan-kanban/.env.example
T
Power BI Dev 88c7c653c2 first init
2026-08-17 10:52:09 +07:00

19 lines
607 B
Bash

# =========================================================================
# TautKan Environment Configuration Example (.env) - Standalone Mode
# =========================================================================
# Node Environment
NODE_ENV=production
# Server Port
PORT=4000
# SQLite Database Location (Stored inside the container at /app/data/kanban.db)
DATABASE_URL="file:/app/data/kanban.db"
# CORS Client Origin (* for all, or your custom domain: https://kanban.yourdomain.com)
CLIENT_ORIGIN="*"
# Rate Limiter: Maximum new boards created per hour per IP
RATE_LIMIT_MAX_BOARDS_PER_HOUR=10