- Redesigned frontend with Outfit/Figtree typography, coral accent palette, noise texture, glassmorphism header, and staggered animations - Split monolithic index.html into modular JS (app, api, upload, batch, results, page-viewer, utils) and extracted CSS - Fixed worker.py to generate page images for Visual Page Inspector - Added Docker Compose stack (web, worker, redis, postgres) - Added batch upload, HTML report export, rate limiting, and Redis queue - Extended test suite with checker, remediation, worker, and DB tests Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
322 B
Bash
12 lines
322 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Allow PHP-FPM to inherit environment variables (needed for getenv() in PHP)
|
|
# By default PHP-FPM clears the environment; this disables that behavior
|
|
echo 'clear_env = no' >> /usr/local/etc/php-fpm.d/www.conf
|
|
|
|
# Start PHP-FPM in background
|
|
php-fpm -D
|
|
|
|
# Start Nginx in foreground
|
|
nginx -g 'daemon off;'
|