Initial Ladill Transfer app — file sharing with QR links.

Scaffolded from the Ladill mini/events extraction pattern: multi-file transfers,
retention controls, public landing pages, analytics, and Gitea deploy workflow.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-08 09:25:30 +00:00
co-authored by Cursor
commit c1e3d8b3ac
281 changed files with 36051 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'price_per_qr_ghs' => (float) env('QR_PRICE_PER_QR_GHS', 5.0),
'min_topup_ghs' => (float) env('QR_MIN_TOPUP_GHS', 5.0),
'max_pdf_bytes' => (int) env('QR_MAX_PDF_BYTES', 104857600), // 100 MB
'short_code_length' => (int) env('QR_SHORT_CODE_LENGTH', 8),
'scan_unique_window_hours' => (int) env('QR_SCAN_UNIQUE_WINDOW_HOURS', 24),
];