-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (21 loc) · 830 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (21 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Backend
PORT=4000
# For Docker Compose, use 'postgres' service name. For local dev, use 'localhost'
DATABASE_URL=postgresql://taskapp:taskapp_secret@postgres:5432/taskapp?schema=public
JWT_SECRET=dev-jwt-secret-change-in-production
JWT_EXPIRES_IN=7d
CORS_ORIGIN=http://localhost:3000
NODE_ENV=development
# Email (Resend) — required for forgot-password and transactional emails
RESEND_API_KEY=re_your_key_here
# Used to construct password-reset links in emails
FRONTEND_URL=http://localhost:5173
# Stripe — required for billing features (leave blank to disable billing UI)
STRIPE_SECRET_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...
STRIPE_PRICE_PRO_MONTHLY=price_...
STRIPE_PRICE_PRO_ANNUAL=price_...
STRIPE_PRICE_TEAM_MONTHLY=price_...
STRIPE_PRICE_TEAM_ANNUAL=price_...
# Frontend
VITE_API_URL=http://localhost:4000