mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-01-07 03:59:48 -06:00
38 lines
812 B
Plaintext
38 lines
812 B
Plaintext
# Local Testing Environment Variables
|
|
# Copy this file to .env.local-test and modify as needed
|
|
|
|
# Timezone (default: Europe/Brussels)
|
|
TZ=Europe/Brussels
|
|
|
|
# Currency (default: EUR)
|
|
CURRENCY=EUR
|
|
|
|
# Timer settings
|
|
ROUNDING_MINUTES=1
|
|
SINGLE_ACTIVE_TIMER=true
|
|
IDLE_TIMEOUT_MINUTES=30
|
|
|
|
# User management
|
|
ALLOW_SELF_REGISTER=true
|
|
ADMIN_USERNAMES=admin,testuser
|
|
|
|
# Security (CHANGE THESE FOR PRODUCTION!)
|
|
SECRET_KEY=local-test-secret-key-change-this
|
|
|
|
# Database (SQLite for local testing)
|
|
DATABASE_URL=sqlite:////data/timetracker.db
|
|
|
|
# Logging
|
|
LOG_FILE=/app/logs/timetracker.log
|
|
|
|
# Cookie settings (disabled for local testing)
|
|
SESSION_COOKIE_SECURE=false
|
|
REMEMBER_COOKIE_SECURE=false
|
|
|
|
# Flask environment
|
|
FLASK_ENV=development
|
|
FLASK_DEBUG=true
|
|
|
|
# License server (disabled for local testing)
|
|
LICENSE_SERVER_ENABLED=false
|