# Database DATABASE_URL="postgresql://nextstep:nextstep@localhost:5432/nextstep?schema=public" # App Configuration NEXTAUTH_SECRET="generate-a-random-secret-here-at-least-32-chars" NEXT_PUBLIC_APP_URL="http://localhost:3000" # Timezone (important for medication scheduling) TZ="Australia/Perth" # Rate Limiting RATE_LIMIT_MAX_REQUESTS=100 RATE_LIMIT_WINDOW_MS=60000 # Login Security LOGIN_MAX_ATTEMPTS=5 LOGIN_LOCKOUT_MINUTES=15 # Session SESSION_MAX_AGE_DAYS=30