-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
59 lines (49 loc) · 2 KB
/
.env.example
File metadata and controls
59 lines (49 loc) · 2 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
# Server configuration
PORT=3000
# API configuration
API_BASE_URL=https://profullstack.com/pdf
# Tatum API configuration
TATUM_API_KEY=your-tatum-api-key
# Puppeteer configuration
# If not set, the application will try to auto-detect the Chrome path based on the environment
# Production path example:
# PUPPETEER_EXECUTABLE_PATH=/home/ubuntu/.cache/puppeteer/chrome/linux-135.0.7049.114/chrome-linux64/chrome
# Local development path example:
# PUPPETEER_EXECUTABLE_PATH=/home/username/.cache/puppeteer/chrome/linux-135.0.7049.114/chrome-linux64/chrome
# Deployment configuration
DEPLOY_REMOTE_HOST=your-server-hostname
DEPLOY_REMOTE_DIR=path/to/remote/directory
INSTALL_SERVICE=false
# Service configuration
SERVICE_NAME=convert2doc-pdf
SERVICE_USER=ubuntu
SERVICE_GROUP=ubuntu
SERVICE_WORKING_DIR=/path/to/installation/directory
# Supabase configuration
SUPABASE_URL=your-supabase-url
SUPABASE_KEY=your-supabase-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key
SUPABASE_DB_PASSWORD=your-supabase-database-password
SUPABASE_ACCESS_TOKEN=your-supabase-access-token
# Mailgun configuration
MAILGUN_API_KEY=your-mailgun-api-key
MAILGUN_DOMAIN=mg.convert2doc.com
FROM_EMAIL=hello@convert2doc.com
TO_EMAIL=admin@convert2doc.com
REPLY_TO_EMAIL=help@convert2doc.com
# Payment configuration
MONTHLY_SUBSCRIPTION_PRICE=5
YEARLY_SUBSCRIPTION_PRICE=30
ETHEREUM_ADDRESS=0x402282c72a2f2b9f059C3b39Fa63932D6AA09f11
BITCOIN_ADDRESS=bc1q254klmlgtanf8xez28gy7r0enpyhk88r2499pt
SOLANA_ADDRESS=CsTWZTbDryjcb229RQ9b7wny5qytH9jwoJy6Lu98xpeF
USDC_ADDRESS=0x402282c72a2f2b9f059C3b39Fa63932D6AA09f11
# Stripe configuration
STRIPE_ACCOUNT_ID=your-stripe-account-id
STRIPE_PUBLISHABLE_KEY=your-stripe-publishable-key
STRIPE_SECRET_KEY=your-stripe-secret-key
STRIPE_WEBHOOK_SECRET=your-stripe-webhook-secret
STRIPE_MONTHLY_PRICE_ID=your-stripe-monthly-price-id
STRIPE_YEARLY_PRICE_ID=your-stripe-yearly-price-id
# Puppeteer configuration
PUPPETEER_EXECUTABLE_PATH=/home/user/.cache/puppeteer/chrome/linux-135.0.7049.114/chrome-linux64/chrome