Initial commit: Flutter app + PHP/MySQL backend on Hostinger

Replaces Firebase with a self-hosted PHP/MySQL API served from
winded.prymsolutions.com. Includes full backend (schema, auth, events,
teams, brackets, suggestions, stats, media, file upload) and updated
Flutter repositories and domain models.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-14 20:13:57 -07:00
commit b239ae3e5f
208 changed files with 19187 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
require_once __DIR__ . '/../config/helpers.php';
cors();
$method = $_SERVER['REQUEST_METHOD'];
$db = db();
if ($method === 'GET') {
$rows = $db->query('SELECT * FROM brackets ORDER BY created_at DESC')->fetchAll();
$rows = array_map(function ($r) {
$r['rounds'] = $r['rounds_json'] ? json_decode($r['rounds_json'], true) : [];
unset($r['rounds_json']);
return $r;
}, $rows);
json_ok(['brackets' => $rows]);
}
if ($method === 'POST') {
require_admin();
$b = body();
$id = uuid();
$db->prepare(
'INSERT INTO brackets (id, name, event_id, status, rounds_json) VALUES (?, ?, ?, ?, ?)'
)->execute([
$id,
$b['name'] ?? 'New Bracket',
$b['event_id'] ?? null,
$b['status'] ?? 'draft',
json_encode($b['rounds'] ?? []),
]);
json_ok(['id' => $id], 201);
}
json_err('Method not allowed', 405);