quit_smoking_website/.env.example
Avery Felts e78dc3f940 Add smoking cessation tracker application
Features:
- User authentication via WorkOS (Apple, Google, Phone)
- Daily check-in dialog for usage tracking
- Calendar view with usage heatmap
- Personalized reduction plan generator after 7 days of tracking
- Custom OKLCH color theme with DM Sans and Space Mono fonts

Tech stack:
- Next.js 15 with App Router
- Shadcn/UI components
- Prisma with SQLite database
- Tailwind CSS v4

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 15:41:41 -07:00

12 lines
365 B
Plaintext

# Database
DATABASE_URL="file:./dev.db"
# WorkOS Configuration
# Get these from your WorkOS dashboard: https://dashboard.workos.com
WORKOS_API_KEY="sk_test_your_api_key_here"
WORKOS_CLIENT_ID="client_your_client_id_here"
WORKOS_COOKIE_PASSWORD="your_secure_32_character_password_here"
# App URL (change for production)
NEXT_PUBLIC_APP_URL="http://localhost:3000"