- Set up Tor container for SOCKS proxy (port 9050) - Configured Monero wallet with remote onion node - Bitcoin node continues syncing in background (60% complete) - Created documentation for wallet configuration steps - All external connections routed through Tor for privacy BTCPay requires manual wallet configuration through web interface: - Bitcoin: Need to add xpub/zpub for watch-only wallet - Monero: Need to add address and view key System ready for payment acceptance once wallets configured.
29 lines
843 B
Plaintext
29 lines
843 B
Plaintext
# LittleShop + TeleBot Hostinger Deployment Configuration
|
|
# Copy this to .env and fill in your values
|
|
|
|
# BTCPay Server Configuration (Hostinger deployment)
|
|
BTCPAY_API_KEY=994589c8b514531f867dd24c83a02b6381a5f4a2
|
|
BTCPAY_STORE_ID=AoxXjM9NJT6P9C1MErkaawXaSchz8sFPYdQ9FyhmQz33
|
|
BTCPAY_WEBHOOK_SECRET=generate-a-secure-webhook-secret-here
|
|
|
|
# Telegram Bot Configuration
|
|
TELEGRAM_BOT_TOKEN=your-telegram-bot-token
|
|
TELEGRAM_ADMIN_CHAT_ID=your-telegram-admin-chat-id
|
|
|
|
# LittleShop Admin Credentials
|
|
LITTLESHOP_USERNAME=admin
|
|
LITTLESHOP_PASSWORD=admin
|
|
|
|
# Brand Name
|
|
BRAND_NAME=Little Shop
|
|
|
|
# Security Keys
|
|
JWT_SECRET_KEY=YourSuperSecretKeyThatIsAtLeast32CharactersLong!
|
|
DATABASE_ENCRYPTION_KEY=CHANGE_THIS_KEY_IN_PRODUCTION_32CHAR
|
|
|
|
# Redis Configuration
|
|
REDIS_ENABLED=false
|
|
REDIS_PASSWORD=RedisPassword123
|
|
|
|
# Hangfire Configuration
|
|
HANGFIRE_ENABLED=false |