Major changes:
• Remove BTCPay Server integration in favor of SilverPAY manual verification
• Add test data cleanup mechanisms (API endpoints and shell scripts)
• Fix compilation errors in TestController (IdentityReference vs CustomerIdentity)
• Add deployment automation scripts for Hostinger VPS
• Enhance integration testing with comprehensive E2E validation
• Add Blazor components and mobile-responsive CSS for admin interface
• Create production environment configuration scripts
Key Features Added:
• Manual payment verification through Admin panel Order Details
• Bulk test data cleanup with proper cascade handling
• Deployment automation with systemd service configuration
• Comprehensive E2E testing suite with SilverPAY integration validation
• Mobile-first admin interface improvements
Security & Production:
• Environment variable configuration for production secrets
• Proper JWT and VAPID key management
• SilverPAY API integration with live credentials
• Database cleanup and maintenance tools
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
77 lines
3.1 KiB
HTML
77 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<base href="/" />
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Blazor Asset Test</title>
|
|
|
|
<!-- Bootstrap -->
|
|
<link href="/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- FontAwesome -->
|
|
<link href="/lib/fontawesome/css/all.min.css" rel="stylesheet">
|
|
<!-- Radzen Blazor CSS -->
|
|
<link href="/_content/Radzen.Blazor/css/material-base.css" rel="stylesheet">
|
|
<!-- Mobile Admin CSS -->
|
|
<link href="/css/mobile-admin.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
<div class="row mb-4">
|
|
<div class="col">
|
|
<h1><i class="fas fa-box"></i> Blazor Asset Loading Test</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="alert alert-info">
|
|
<h4>Testing Asset Loading</h4>
|
|
<ul>
|
|
<li><strong>Bootstrap:</strong> <span class="badge bg-primary">This should be styled</span></li>
|
|
<li><strong>FontAwesome:</strong> <i class="fas fa-check-circle text-success"></i> Icon should appear</li>
|
|
<li><strong>Radzen CSS:</strong> Check browser dev tools for 404 errors</li>
|
|
<li><strong>Mobile CSS:</strong> <span style="font-size: var(--touch-target-size, 44px);">Touch target size</span></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<p>If you can see proper styling and no 404 errors in the browser console, the assets are loading correctly.</p>
|
|
|
|
<h5>Mobile Navigation Test</h5>
|
|
<nav class="mobile-bottom-nav">
|
|
<ul class="mobile-bottom-nav-items">
|
|
<li class="mobile-nav-item">
|
|
<a href="#" class="mobile-nav-link">
|
|
<i class="fas fa-shopping-cart"></i>
|
|
<span>Orders</span>
|
|
</a>
|
|
</li>
|
|
<li class="mobile-nav-item">
|
|
<a href="#" class="mobile-nav-link active">
|
|
<i class="fas fa-box"></i>
|
|
<span>Products</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
<script src="/lib/jquery/jquery.min.js"></script>
|
|
<!-- Bootstrap JS -->
|
|
<script src="/lib/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Blazor Server JS -->
|
|
<script src="/_framework/blazor.server.js"></script>
|
|
<!-- Radzen JS -->
|
|
<script src="/_content/Radzen.Blazor/Radzen.Blazor.js"></script>
|
|
|
|
<script>
|
|
console.log('Asset loading test loaded');
|
|
console.log('jQuery available:', typeof $ !== 'undefined');
|
|
console.log('Bootstrap available:', typeof bootstrap !== 'undefined');
|
|
console.log('Blazor available:', typeof window.Blazor !== 'undefined');
|
|
</script>
|
|
</body>
|
|
</html> |