mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 16:41:08 +02:00
Two long-uncommitted Mac Mini drifts cleaned up: 1. cloudflared-config.yml — git.mana.how → :3030 (Forgejo). The route has been live for weeks (HTTP 200), just never committed. 2. .gitignore — exclude secrets/ (private keys: mana-ai mission-grant RSA keypair lives there; must NEVER be committed) and *.bak-* files (operator backup workflow on the Mac Mini). services/mana-auth/drizzle/ on the Mac Mini was Mac-Mini-side generated state for the (now deleted) mana-monorepo mana-auth service; cleanup fell out with the Phase 7 deletion. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
151 lines
2 KiB
Text
151 lines
2 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
|
|
|
|
# Service secrets (private keys, never commit)
|
|
secrets/
|
|
|
|
# Local backup files (Mac Mini operator workflow)
|
|
*.bak-*
|
|
.env.macmini.bak-*
|
|
cloudflared-config.yml.bak-*
|
|
|
|
# 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
|