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

24
deploy-with-env.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# Deploy to self-hosted Supabase using environment variables
# Set Supabase environment variables
export SUPABASE_URL="https://lovable.backoffice.biz.id"
export SUPABASE_SERVICE_ROLE_KEY="eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJzdXBhYmFzZSIsImlhdCI6MTc2NjAzNzEyMCwiZXhwIjo0OTIxNzEwNzIwLCJyb2xlIjoic2VydmljZV9yb2xlIn0.t6D9VwaukYGq4c_VbW1bkd3ZkKgldpCKRR13nN14XXc"
FUNCTION_NAME="create-google-meet-event"
FUNCTION_FILE="supabase/functions/$FUNCTION_NAME/index.ts"
echo "🚀 Deploying $FUNCTION_NAME to self-hosted Supabase..."
echo ""
if [ ! -f "$FUNCTION_FILE" ]; then
echo "❌ Function file not found: $FUNCTION_FILE"
exit 1
fi
echo "📤 Deploying via Supabase CLI..."
supabase functions deploy "$FUNCTION_NAME" --project-ref "lovable-backoffice" --verify-jwt
echo ""
echo "✨ Deployment complete!"