creates application

This commit is contained in:
simon.franken
2026-02-16 10:15:27 +01:00
parent 791c661395
commit 7d678c1c4d
65 changed files with 10389 additions and 0 deletions

17
.env.example Normal file
View File

@@ -0,0 +1,17 @@
# Database
DATABASE_URL="postgresql://user:password@localhost:5432/timetracker"
# OIDC Configuration
OIDC_ISSUER_URL="https://your-oidc-provider.com"
OIDC_CLIENT_ID="your-client-id"
OIDC_REDIRECT_URI="http://localhost:3000/auth/callback"
# Session
SESSION_SECRET="your-session-secret-min-32-characters"
# Server
PORT=3001
NODE_ENV=development
# Frontend URL (for CORS)
FRONTEND_URL="http://localhost:5173"