-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenv.example
More file actions
40 lines (33 loc) · 1.11 KB
/
env.example
File metadata and controls
40 lines (33 loc) · 1.11 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
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_USER=conductor_user
DB_PASSWORD=your_secure_database_password
DB_NAME=conductor
DB_SSLMODE=disable
# Stripe Configuration
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key_here
STRIPE_PUBLIC_KEY=pk_test_your_stripe_public_key_here
STRIPE_WEBHOOK_SECRET=whsec_your_stripe_webhook_secret_here
# Xendit Configuration
XENDIT_SECRET_KEY=xnd_sk_test_your_xendit_secret_key_here
XENDIT_PUBLIC_KEY=xnd_pk_test_your_xendit_public_key_here
XENDIT_WEBHOOK_SECRET=your_xendit_webhook_secret_here
# Razorpay Configuration
RAZORPAY_KEY_ID=rzp_test_your_razorpay_key_id_here
RAZORPAY_KEY_SECRET=your_razorpay_key_secret_here
RAZORPAY_WEBHOOK_SECRET=your_razorpay_webhook_secret_here
# Airwallex Configuration
AIRWALLEX_CLIENT_ID=your_airwallex_client_id_here
AIRWALLEX_API_KEY=your_airwallex_api_key_here
AIRWALLEX_WEBHOOK_SECRET=your_airwallex_webhook_secret_here
AIRWALLEX_USE_SANDBOX=true
# OpenAI Configuration
OPENAI_API_KEY=sk-your_openai_api_key_here
# Redis Configuration (Optional)
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_DB=0
# Server Configuration
PORT=8080