19 lines
607 B
Bash
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
|