- Add comprehensive health check system with multiple endpoints - Add Prometheus metrics endpoint - Add production logging configurations (5 strategies) - Add complete deployment documentation suite: * QUICKSTART.md - 30-minute deployment guide * DEPLOYMENT_CHECKLIST.md - Printable verification checklist * DEPLOYMENT_WORKFLOW.md - Complete deployment lifecycle * PRODUCTION_DEPLOYMENT.md - Comprehensive technical reference * production-logging.md - Logging configuration guide * ANSIBLE_DEPLOYMENT.md - Infrastructure as Code automation * README.md - Navigation hub * DEPLOYMENT_SUMMARY.md - Executive summary - Add deployment scripts and automation - Add DEPLOYMENT_PLAN.md - Concrete plan for immediate deployment - Update README with production-ready features All production infrastructure is now complete and ready for deployment.
30 lines
897 B
PHP
30 lines
897 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
use App\Framework\WebPush\Services\VapidKeyGenerator;
|
|
|
|
echo "=== VAPID Key Generation for Web Push ===\n\n";
|
|
|
|
try {
|
|
$generator = new VapidKeyGenerator();
|
|
$keyPair = $generator->generate();
|
|
|
|
echo "✅ VAPID keys generated successfully!\n\n";
|
|
|
|
echo "--- Copy these to your .env file ---\n\n";
|
|
echo "VAPID_PUBLIC_KEY={$keyPair->publicKey}\n";
|
|
echo "VAPID_PRIVATE_KEY={$keyPair->privateKey}\n";
|
|
echo "VAPID_SUBJECT=mailto:admin@example.com\n\n";
|
|
|
|
echo "--- Security Notes ---\n";
|
|
echo "• The PUBLIC key goes in your frontend JavaScript\n";
|
|
echo "• The PRIVATE key must remain secret on your server\n";
|
|
echo "• NEVER commit private keys to version control\n\n";
|
|
|
|
} catch (\Exception $e) {
|
|
echo "❌ Failed to generate VAPID keys: {$e->getMessage()}\n";
|
|
exit(1);
|
|
} |