- Replace legacy directory structure (api/, db/, functions/, logs/, pooler/) with single docker-compose.yml based self-hosted setup - Add selfhosted-supabase-mcp TypeScript MCP server for database management - Add .dockerignore for Docker build context - Update .gitignore to exclude .env files, volumes/, backups, logs
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
/**
|
|
* Test setup file for Bun test runner.
|
|
* This file is preloaded before all tests run.
|
|
*/
|
|
|
|
// Global test setup - mock environment variables
|
|
process.env.SUPABASE_URL = 'http://localhost:54321';
|
|
process.env.SUPABASE_ANON_KEY = 'test-anon-key';
|