kcar 95af17c02d feat: migrate to docker-compose with selfhosted-supabase-mcp
- 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
2026-02-21 19:32:57 +00:00

20 lines
429 B
YAML

# Codacy configuration
# See: https://docs.codacy.com/repositories-configure/codacy-configuration-file/
---
engines:
eslint:
enabled: true
exclude_paths:
# Test files - contain intentional test fixtures (hardcoded credentials, etc.)
- "src/__tests__/**"
- "**/*.test.ts"
- "**/*.spec.ts"
# Build output
- "dist/**"
- "node_modules/**"
# Config files
- "*.config.js"
- "*.config.ts"