forked from huhusmang/Subscription-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.production.example
More file actions
27 lines (20 loc) · 923 Bytes
/
.env.production.example
File metadata and controls
27 lines (20 loc) · 923 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
# Production Environment Configuration
# Copy this file to .env and update with your values
# ==================== REQUIRED CONFIGURATION ====================
# API key for authenticating requests to the server
# Generate a secure key: openssl rand -hex 32
API_KEY=your_secure_api_key_here
# ==================== OPTIONAL CONFIGURATION ====================
# Uncomment and modify only if you need to override defaults
# Server port (default: 3001)
# PORT=3001
# Base currency for the system (default: CNY)
# Supported: USD, EUR, GBP, CNY, JPY, CAD, AUD, TRY
# BASE_CURRENCY=CNY
# TianAPI key for real-time exchange rates (optional)
# If not set, the system will use built-in exchange rates
# Get your key from: https://www.tianapi.com/
# TIANAPI_KEY=your_tianapi_key_here
# Database path (default: /app/data/database.sqlite in Docker)
# Usually you don't need to change this
# DATABASE_PATH=/app/data/database.sqlite