- 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
20 lines
429 B
YAML
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"
|