- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
46 lines
1.7 KiB
Plaintext
46 lines
1.7 KiB
Plaintext
# Wallet Daemon - Production Environment Template
|
|
# DO NOT commit actual values - use AWS Secrets Manager in production
|
|
|
|
# =============================================================================
|
|
# CORE APPLICATION CONFIGURATION
|
|
# =============================================================================
|
|
APP_ENV=production
|
|
DEBUG=false
|
|
LOG_LEVEL=WARN
|
|
|
|
# =============================================================================
|
|
# SERVICE CONFIGURATION
|
|
# =============================================================================
|
|
# Coordinator Integration
|
|
COORDINATOR_BASE_URL=https://api.aitbc.bubuit.net
|
|
COORDINATOR_API_KEY=secretRef:api-keys:coordinator
|
|
|
|
# REST API Configuration
|
|
REST_PREFIX=/v1
|
|
|
|
# =============================================================================
|
|
# DATABASE CONFIGURATION
|
|
# =============================================================================
|
|
# Ledger Database Path (use persistent storage)
|
|
LEDGER_DB_PATH=/data/wallet_ledger.db
|
|
|
|
# =============================================================================
|
|
# SECURITY CONFIGURATION
|
|
# =============================================================================
|
|
# Rate Limiting (production values)
|
|
WALLET_RATE_LIMIT=30
|
|
WALLET_RATE_WINDOW=60
|
|
|
|
# =============================================================================
|
|
# MONITORING
|
|
# =============================================================================
|
|
# Health Check Configuration
|
|
HEALTH_CHECK_INTERVAL=30
|
|
|
|
# =============================================================================
|
|
# CLUSTER CONFIGURATION
|
|
# =============================================================================
|
|
# Kubernetes Settings
|
|
POD_NAMESPACE=aitbc
|
|
SERVICE_NAME=wallet-daemon
|