-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
78 lines (66 loc) · 2.72 KB
/
.env.example
File metadata and controls
78 lines (66 loc) · 2.72 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Powernode Platform Environment Configuration
# Copy this file to .env and fill in the values
# =============================================================================
# DATABASE
# =============================================================================
POSTGRES_USER=powernode
POSTGRES_PASSWORD=your_secure_password_here
POSTGRES_DB=powernode_production
# =============================================================================
# REDIS
# =============================================================================
REDIS_PASSWORD=your_redis_password_here
# =============================================================================
# APPLICATION SECRETS
# =============================================================================
# Generate with: openssl rand -hex 64
SECRET_KEY_BASE=your_secret_key_base_here
JWT_SECRET=your_jwt_secret_here
WORKER_API_KEY=your_worker_api_key_here
# =============================================================================
# DOMAIN & SSL
# =============================================================================
DOMAIN=example.com
ACME_EMAIL=admin@example.com
# Traefik dashboard auth (generate with: htpasswd -nb admin password)
TRAEFIK_AUTH=admin:$$apr1$$xyz...
# =============================================================================
# PAYMENT PROVIDERS
# =============================================================================
# Stripe
STRIPE_API_KEY=sk_live_...
STRIPE_WEBHOOK_SECRET=whsec_...
STRIPE_PUBLISHABLE_KEY=pk_live_...
# PayPal
PAYPAL_CLIENT_ID=your_paypal_client_id
PAYPAL_CLIENT_SECRET=your_paypal_client_secret
PAYPAL_MODE=live
# =============================================================================
# EMAIL (Optional)
# =============================================================================
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=your_smtp_user
SMTP_PASSWORD=your_smtp_password
SMTP_FROM=noreply@example.com
# =============================================================================
# MONITORING (Optional)
# =============================================================================
SENTRY_DSN=https://...@sentry.io/...
NEW_RELIC_LICENSE_KEY=your_license_key
# =============================================================================
# CLOUD STORAGE (Optional)
# =============================================================================
# AWS S3
AWS_ACCESS_KEY_ID=your_access_key
AWS_SECRET_ACCESS_KEY=your_secret_key
AWS_REGION=us-east-1
AWS_BUCKET=powernode-uploads
# Google Cloud Storage
GCS_PROJECT_ID=your_project_id
GCS_BUCKET=powernode-uploads
GCS_CREDENTIALS=path/to/credentials.json
# Azure Blob Storage
AZURE_STORAGE_ACCOUNT=your_account
AZURE_STORAGE_ACCESS_KEY=your_key
AZURE_STORAGE_CONTAINER=powernode-uploads