littleshop/LittleShop/appsettings.Development.json
SysAdmin a2247d7c02
Some checks failed
Build and Deploy LittleShop / Build TeleBot Docker Image (push) Failing after 11s
Build and Deploy LittleShop / Build LittleShop Docker Image (push) Failing after 15s
Build and Deploy LittleShop / Deploy to Production VPS (Manual Only) (push) Has been skipped
Build and Deploy LittleShop / Deploy to Pre-Production (CT109) (push) Has been skipped
feat: Add customer management, payments, and push notifications with security enhancements
Major Feature Additions:
- Customer management: Full CRUD with data export and privacy compliance
- Payment management: Centralized payment tracking and administration
- Push notification subscriptions: Manage and track web push subscriptions

Security Enhancements:
- IP whitelist middleware for administrative endpoints
- Data retention service with configurable policies
- Enhanced push notification security documentation
- Security fixes progress tracking (2025-11-14)

UI/UX Improvements:
- Enhanced navigation with improved mobile responsiveness
- Updated admin dashboard with order status counts
- Improved product CRUD forms
- New customer and payment management interfaces

Backend Improvements:
- Extended customer service with data export capabilities
- Enhanced order service with status count queries
- Improved crypto payment service with better error handling
- Updated validators and configuration

Documentation:
- DEPLOYMENT_NGINX_GUIDE.md: Nginx deployment instructions
- IP_STORAGE_ANALYSIS.md: IP storage security analysis
- PUSH_NOTIFICATION_SECURITY.md: Push notification security guide
- UI_UX_IMPROVEMENT_PLAN.md: Planned UI/UX enhancements
- UI_UX_IMPROVEMENTS_COMPLETED.md: Completed improvements

Cleanup:
- Removed temporary database WAL files
- Removed stale commit message file

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-16 19:33:02 +00:00

68 lines
1.6 KiB
JSON

{
"ConnectionStrings": {
"DefaultConnection": "Data Source=littleshop-dev.db"
},
"Jwt": {
"Key": "DEVELOPMENT_USE_DOTNET_USER_SECRETS_OR_ENV_VAR",
"Issuer": "LittleShop-Dev",
"Audience": "LittleShop-Dev",
"ExpiryInHours": 2
},
"SilverPay": {
"BaseUrl": "http://localhost:8001",
"ApiKey": "sp_test_key_development",
"WebhookSecret": "webhook_secret_dev",
"DefaultWebhookUrl": "http://localhost:5000/api/orders/payments/webhook",
"AllowUnsignedWebhooks": true
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft.AspNetCore": "Information",
"LittleShop": "Debug"
}
},
"Security": {
"AllowInsecureSSL": true,
"EnableDetailedErrors": true
},
"CORS": {
"AllowedOrigins": [
"http://localhost:3000",
"http://localhost:5173",
"http://localhost:5000",
"http://localhost:5001",
"https://localhost:5001",
"http://localhost:8080"
]
},
"TeleBot": {
"ApiUrl": "http://localhost:8080",
"ApiKey": "development-key-replace-in-production"
},
"DataRetention": {
"Enabled": true,
"CleanupTime": "03:00",
"CheckIntervalHours": 1,
"DefaultRetentionDays": 7,
"DeletionGracePeriodDays": 1,
"MaxCustomersPerRun": 10,
"DryRunMode": true,
"NotifyAdminBeforeDeletion": true,
"NotificationDaysBeforeDeletion": 1
},
"IPWhitelist": {
"Enabled": false,
"UseForwardedHeaders": true,
"ShowClientIP": true,
"WhitelistedIPs": [
"127.0.0.1",
"::1"
],
"WhitelistedCIDRs": [
"192.168.0.0/16",
"10.0.0.0/8",
"172.16.0.0/12"
]
}
}