3b90074723
Add server/logger.js - zero-dependency, level-based logger that outputs JSON in production and human-readable format in development. Controlled via LOG_LEVEL env var (debug/info/warn/error, default: info). Replaces all 100 console.log/warn/error calls in 14 server files.
40 lines
1023 B
Bash
40 lines
1023 B
Bash
# Oikos - Environment Variables
|
|
# Copy this file to .env and adjust the values.
|
|
|
|
# Server
|
|
PORT=3000
|
|
NODE_ENV=production
|
|
# LOG_LEVEL=info # debug, info, warn, error (default: info)
|
|
|
|
# Session
|
|
SESSION_SECRET=REPLACE_WITH_A_LONG_RANDOM_STRING
|
|
# SESSION_SECURE=false # Only set when not using HTTPS/reverse proxy (e.g. direct localhost)
|
|
|
|
# Database (SQLite/SQLCipher)
|
|
DB_PATH=/data/oikos.db
|
|
DB_ENCRYPTION_KEY=REPLACE_WITH_A_STRONG_ENCRYPTION_KEY
|
|
|
|
# Weather (OpenWeatherMap)
|
|
OPENWEATHER_API_KEY=YOUR_API_KEY
|
|
OPENWEATHER_CITY=Berlin
|
|
OPENWEATHER_UNITS=metric
|
|
OPENWEATHER_LANG=de
|
|
|
|
# Google Calendar (optional)
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
GOOGLE_REDIRECT_URI=https://your-domain.com/api/v1/calendar/google/callback
|
|
|
|
# Apple Calendar CalDAV (optional)
|
|
APPLE_CALDAV_URL=https://caldav.icloud.com
|
|
APPLE_USERNAME=
|
|
APPLE_APP_SPECIFIC_PASSWORD=
|
|
|
|
# Calendar sync interval in minutes (default: 15)
|
|
SYNC_INTERVAL_MINUTES=15
|
|
|
|
# Security
|
|
RATE_LIMIT_WINDOW_MS=60000
|
|
RATE_LIMIT_MAX_ATTEMPTS=5
|
|
RATE_LIMIT_BLOCK_DURATION_MS=900000
|