aboutsummaryrefslogtreecommitdiffstats
path: root/docker/php
Commit message (Collapse)AuthorAgeFilesLines
* Move uploads to a named Docker volumeHEADmasterThomas Vanbesien2026-03-242-9/+0
| | | | | | Replace the bind-mounted src/uploads/ with a named volume shared between PHP (read-write) and Nginx (read-only). Remove entrypoint.sh since the volume handles directory creation automatically.
* Add editor with webcam/upload capture, overlay compositing, and gallery feedThomas Vanbesien2026-03-212-0/+11
|
* Add user authentication with email verification and password resetThomas Vanbesien2026-03-211-0/+10
| | | | | | Implements registration, login/logout, email verification via token, and password reset flow. Includes CSRF protection, flash messages, MailPit for dev email testing, and security docs in README.
* Initial project scaffoldThomas Vanbesien2026-03-211-0/+15
Set up MVC architecture with front controller, router, autoloader, database singleton, and Docker Compose stack (Nginx + PHP-FPM + MariaDB). Includes DB schema, responsive layout, dev tooling (php-cs-fixer, parallel-lint), and documentation.