-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (35 loc) · 1.48 KB
/
.env.example
File metadata and controls
41 lines (35 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# ===========================================
# TimeTracker - Environment Variables
# ===========================================
# Kopiere diese Datei zu .env.local für lokale Entwicklung
# oder zu .env für Produktion
# ===========================================
# DATABASE
# ===========================================
# Muss mit docker-compose übereinstimmen (POSTGRES_USER/POSTGRES_PASSWORD)
DATABASE_URL="postgresql://timetracker:timetracker_secure_password@localhost:5432/timetracker?schema=public"
# ===========================================
# NEXTAUTH
# ===========================================
# Generiere mit: openssl rand -base64 32
NEXTAUTH_SECRET="your-super-secret-key-change-in-production"
NEXTAUTH_URL="http://localhost:3000"
# ===========================================
# APP SETTINGS
# ===========================================
# Standard Zeitzone für Berechnungen
TZ="Europe/Berlin"
# Standard Urlaubstage für neue Mitarbeiter
DEFAULT_ANNUAL_LEAVE_DAYS=30
# Standard Bundesland für Feiertage (ISO 3166-2)
# Optionen: DE-BW, DE-BY, DE-BE, DE-BB, DE-HB, DE-HH, DE-HE, DE-MV,
# DE-NI, DE-NW, DE-RP, DE-SL, DE-SN, DE-ST, DE-SH, DE-TH
DEFAULT_REGION="DE-BY"
# ===========================================
# OPTIONAL: SMTP für E-Mail-Benachrichtigungen
# ===========================================
# SMTP_HOST="smtp.example.com"
# SMTP_PORT=587
# SMTP_USER="notifications@example.com"
# SMTP_PASSWORD="your-smtp-password"
# SMTP_FROM="TimeTracker <noreply@example.com>"