Skip to main content

max / makenotwork

914 B · 36 lines History Blame Raw
1 # Server Configuration
2 HOST=127.0.0.1
3 PORT=3000
4
5 # Database (on macOS with Homebrew, use your username without password)
6 DATABASE_URL=postgres://your_user@localhost:5432/makenotwork
7
8 # Authentication
9 JWT_SECRET=your-super-secret-jwt-key-change-in-production
10
11 # Session
12 SESSION_SECRET=your-session-secret-change-in-production
13
14 # Optional: Stripe Connect (payments)
15 # Get these from https://dashboard.stripe.com/apikeys
16 # STRIPE_SECRET_KEY=sk_test_...
17 # STRIPE_WEBHOOK_SECRET=whsec_...
18 # HOST_URL=http://localhost:3000
19
20 # Optional: S3 Storage (for file uploads)
21 # S3_ENDPOINT=https://fsn1.your-objectstorage.com
22 # S3_BUCKET=makenotwork-files
23 # S3_REGION=fsn1
24 # S3_ACCESS_KEY=
25 # S3_SECRET_KEY=
26
27 # Optional: CDN for free content downloads (Cloudflare-proxied)
28 # CDN_BASE_URL=https://cdn.makenot.work
29
30 # Optional: Email (Phase 8)
31 # SMTP_HOST=
32 # SMTP_PORT=587
33 # SMTP_USER=
34 # SMTP_PASS=
35 # FROM_EMAIL=noreply@makenot.work
36