-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 926 Bytes
/
.env.example
File metadata and controls
31 lines (25 loc) · 926 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
25
26
27
28
29
30
31
# Database
DATABASE_URL=postgresql://user:password@localhost:5432/ai_marketplace
# Auth0
AUTH0_DOMAIN=your-tenant.auth0.com
AUTH0_AUDIENCE=https://api.yourdomain.com
AUTH0_CLIENT_ID=your-client-id
# Digital Ocean
DIGITALOCEAN_TOKEN=your-digitalocean-api-token
# System SSH key pre-configured in DO (created once manually)
DIGITALOCEAN_SYSTEM_SSH_KEY_ID=your-ssh-key-id
# Path to the system private key on this server (used to access all boxes)
SYSTEM_SSH_PRIVATE_KEY_PATH=/path/to/.ssh/id_ed25519
# Encryption key for sensitive data (32 bytes, base64 encoded)
ENCRYPTION_KEY=your-32-byte-encryption-key-here
# Stripe
STRIPE_SECRET_KEY=sk_...
STRIPE_WEBHOOK_SECRET=whsec_...
STRIPE_PRICE_MAP={"basic":"price_xxx","medium":"price_yyy","pro":"price_zzz"}
FRONTEND_URL=http://localhost:5173
# Server
HOST=0.0.0.0
PORT=8000
DEBUG=true
# CORS (comma-separated origins)
CORS_ORIGINS=http://localhost:5173,http://localhost:3000