mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
Remove stale dirs/files superseded by metabuilder-small's reorganization: - Old YAML entity/seed files (migrated to JSON) - Root-level workflowui/ (moved to frontends/workflowui/) - Prisma, Pyodide, old hooks, bun.lock artifacts - Legacy scratch docs (txt/, docs/, deployment/*.md) - Stale CI workflows consolidated in small Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
133 lines
2.2 KiB
Plaintext
133 lines
2.2 KiB
Plaintext
# Dependencies (installed fresh via npm ci in multi-stage builds)
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Build output (built fresh inside Docker)
|
|
**/.next
|
|
**/out
|
|
**/storybook-static
|
|
**/dist
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
*.test.ts
|
|
*.test.tsx
|
|
*.spec.ts
|
|
*.spec.tsx
|
|
__tests__
|
|
__mocks__
|
|
.vitest
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Local env files
|
|
.env
|
|
.env*.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript build info
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
docs
|
|
README*
|
|
CHANGELOG*
|
|
LICENSE
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
azure-pipelines.yml
|
|
|
|
# Docker (Dockerfiles are referenced by path, not COPYed)
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# Development config
|
|
.editorconfig
|
|
.prettierrc*
|
|
.eslintrc*
|
|
.eslintignore
|
|
|
|
# E2E / test infrastructure
|
|
e2e
|
|
playwright-report
|
|
test-results
|
|
|
|
# Temporary files
|
|
tmp
|
|
temp
|
|
.tmp
|
|
.cache
|
|
|
|
# Large directories not needed by Node.js Docker builds
|
|
gameengine
|
|
dbal
|
|
services
|
|
old
|
|
txt
|
|
deployment
|
|
prisma
|
|
mojo
|
|
spec
|
|
scripts
|
|
.claude
|
|
dist
|
|
|
|
# Allow specific dbal paths through for app builds
|
|
!dbal/shared/ui
|
|
!dbal/shared/api/schema/entities
|
|
!dbal/shared/seeds/database
|
|
|
|
# Allow conanfiles through for base image builds (negation overrides above exclusions)
|
|
!dbal/production/build-config/conanfile.py
|
|
!gameengine/conanfile.py
|
|
!services/media_daemon/build-config/conanfile.txt
|
|
!frontends/qt6/conanfile.txt
|
|
!frontends/cli/conanfile.txt
|
|
|
|
# Allow requirements.txt for base-pip-deps image
|
|
!dbal/production/tests/integration/requirements.txt
|
|
!services/email_service/requirements.txt
|
|
!services/smtprelay/requirements.txt
|
|
|
|
# Allow deployment config files for baked-in Docker images
|
|
!deployment/portal
|
|
!deployment/config/nginx/production.conf
|
|
!deployment/config/prometheus/prometheus.yml
|
|
!deployment/config/prometheus/alerts.yml
|
|
!deployment/config/grafana/provisioning
|
|
!deployment/config/loki/loki-config.yml
|
|
!deployment/config/promtail/promtail-config.yml
|
|
!deployment/config/alertmanager/alertmanager.yml
|
|
|
|
# Allow DBAL templates for dbal-init volume seeder
|
|
!dbal/templates/sql
|
|
|
|
# Allow media daemon config for nginx-stream image
|
|
!services/media_daemon/config/nginx-stream.conf
|