littleshop/.env.production.template
SysAdmin 8b0e3e0611 Implement comprehensive notification system for LittleShop
- Add admin PWA push notifications for order management
- Integrate TeleBot customer messaging service
- Add push notification endpoints and VAPID key support
- Implement order status notifications throughout workflow
- Add notification UI components in admin panel
- Create TeleBotMessagingService for customer updates
- Add WebPush configuration to appsettings
- Fix compilation issues (BotStatus, BotContacts DbSet)
- Add comprehensive testing documentation

Features:
- Real-time admin notifications for new orders and status changes
- Customer order progress updates via TeleBot
- Graceful failure handling for notification services
- Test endpoints for notification system validation

🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-19 16:17:24 +01:00

26 lines
838 B
Plaintext

# Production Environment Configuration
# Copy this file to .env and fill in the actual values
# JWT Configuration
JWT_SECRET_KEY=your-super-secret-jwt-key-that-is-at-least-32-characters-long
# BTCPay Server Configuration
BTCPAY_SERVER_URL=https://your-btcpay-server.com
BTCPAY_STORE_ID=your-store-id
BTCPAY_API_KEY=your-api-key
BTCPAY_WEBHOOK_SECRET=your-webhook-secret
# Optional: Database Connection (defaults to SQLite in container)
# CONNECTION_STRING=Data Source=/app/data/littleshop.db
# Optional: Logging Configuration
# LOG_LEVEL=Information
# LOG_RETENTION_DAYS=30
# TeleBot Integration (for customer order notifications)
TELEBOT_API_URL=https://your-telebot-instance.com
TELEBOT_API_KEY=your-telebot-api-key
# Optional: Application Configuration
# ASPNETCORE_ENVIRONMENT=Production
# ALLOWED_HOSTS=littleshop.silverlabs.uk