Docs: Cleanup unused files and update README/DEPLOYMENT guides with auto-start instructions

This commit is contained in:
2025-12-22 19:44:24 +11:00
parent bdd36a92c7
commit 632dedcf57
9 changed files with 53 additions and 590 deletions

14
apply-prod-schema.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Apply schema update to production database
# Use this if you are getting "function increment_wins does not exist" errors
# Setup
export PGHOST=202.171.184.108
export PGUSER=postgres
export PGPASSWORD=your_password_here
export PGDATABASE=connect5
echo "Applying schema..."
psql -f postgres-schema.sql
echo "Done!"