27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
# Portal Server Configuration Example
|
|
# Copy this file to .env and fill in your actual values
|
|
# Stripe Configuration
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_51MCkZTC7LG8OeRdIcqmmoDkRwDObXSwYdChprMHJYoD2VRO8OCDBV5KtegLI0tLFXJo9yyvEXi7jzk1NAB5owj8i00DkYSaV9y
|
|
STRIPE_SECRET_KEY=sk_test_51MCkZTC7LG8OeRdI5d2zWxjmePPkM6CzH0C28nnXiwp81v42S3S7djSIiKBdQhdev1FH32JUm6kg463H42H5KXm500lYxLEfoA
|
|
STRIPE_WEBHOOK_SECRET=whsec_YOUR_WEBHOOK_SECRET_HERE
|
|
|
|
# Server Configuration
|
|
PORT=3001
|
|
HOST=127.0.0.1
|
|
RUST_LOG=info
|
|
|
|
# Identify KYC Configuration
|
|
# Get these from your Identify dashboard
|
|
IDENTIFY_API_KEY=your_identify_api_key_here
|
|
IDENTIFY_API_URL=https://api.identify.com
|
|
IDENTIFY_WEBHOOK_SECRET=your_identify_webhook_secret_here
|
|
|
|
# Security Configuration
|
|
# API keys for authentication (comma-separated for multiple keys)
|
|
API_KEYS=your_api_key_here,another_api_key_here
|
|
|
|
# CORS Configuration
|
|
# Comma-separated list of allowed origins, or * for all
|
|
CORS_ORIGINS=*
|
|
# For production, use specific origins:
|
|
# CORS_ORIGINS=https://yourapp.com,https://www.yourapp.com |