managarten/.gitignore
Till JS d8a35afd99 infra(gpu-box): commit GPU-Box compose to repo + Phase 2e docs
The GPU-Box stack has been carrying real production workload since
Phase 2c (monitoring) but only existed as a /srv/mana/docker-compose.gpu-box.yml
on the box itself. If the WSL filesystem dies, none of it is
reproducible. Bring the file into infrastructure/ as the source of
truth (live file on the box must be kept synchronous; manual rsync
for now since there's no CD into the GPU box).

Plus:
- infrastructure/.env.gpu-box.example as the secrets template
- infrastructure/README.md describing what runs there + how the
  Cloudflare-tunnel ingress is API-managed (not config.yml)
- .gitignore for the live infrastructure/.env.gpu-box copy
- MAC_MINI_SERVER.md status-page section now points at the GPU-Box
  setup instead of the long-stopped Mini container
- PLAN_OPTION_C.md: Phase 2e row + GPU-Box service tree update

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-07 13:28:49 +02:00

143 lines
1.9 KiB
Text

# Dependencies
node_modules/
.pnpm-store/
# Build outputs
dist/
build/
.next/
.nuxt/
.output/
.svelte-kit/
.astro/
.expo/
android/
ios/
.netlify/
# Turbo
.turbo/
# MCP config (contains API keys)
.mcp.json
# Credentials docs (must NEVER be committed)
docs/*_CREDENTIALS.md
docs/CREDENTIALS_*.md
# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.env*.local
.env.secrets
# BUT commit the central development env file + the secrets template
!.env.development
!.env.secrets.example
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Testing
coverage/
.nyc_output/
test-results/
playwright-report/
playwright-report-personas/
test-results/
.auth-state.json
# TypeScript
*.tsbuildinfo
# Drizzle compiled config files
drizzle.config.js
drizzle.config.d.ts
drizzle.config.js.map
# Compiled JS in packages (src should be TS only)
packages/*/src/**/*.js
packages/*/src/**/*.js.map
packages/*/src/**/*.d.ts
# Cache
.cache/
.parcel-cache/
.eslintcache
.prettiercache
# Expo
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/
# Native builds (keep for reference but don't track)
# Uncomment if you want to track these:
# !android/
# !ios/
# Sentry
.sentryclirc
# Temporary files
tmp/
temp/
*.tmp
# Package manager locks (keep only pnpm)
package-lock.json
yarn.lock
# Debug
.pnpm-debug.log
# Hive mind sessions
.hive-mind/
# Claude Flow metrics
.claude-flow/
.claude-flow/metrics/
# Mac Mini deployment
.env.macmini
ssh-key-command.txt
# GPU-Box deployment — live .env, copy of infrastructure/.env.gpu-box.example
infrastructure/.env.gpu-box
# Python
.venv/
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
pip-log.txt
pip-delete-this-directory.txt
# ML Models (large files, downloaded on demand)
mlx_models/
services/mana-sync/server