Add deployment helpers and environment config

- Add manual deployment instructions for self-hosted Supabase
- Add schema refresh SQL scripts
- Add deployment helper scripts
- Add Supabase environment configuration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
dwindown
2025-12-23 10:26:06 +07:00
parent 6e411b160a
commit 0a3aca7cbc
6 changed files with 280 additions and 0 deletions

11
force-schema-refresh.sql Normal file
View File

@@ -0,0 +1,11 @@
-- Force schema cache refresh by selecting from the table
SELECT * FROM platform_settings LIMIT 1;
-- Verify the column exists
SELECT column_name, data_type, is_nullable
FROM information_schema.columns
WHERE table_name = 'platform_settings'
AND column_name = 'google_service_account_json';
-- Update the table to trigger cache refresh (safe operation, just sets same value)
UPDATE platform_settings SET id = id WHERE 1=1 LIMIT 1;