mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
Add 22 E2E tests across 5 test suites covering auth, calendar views, settings, event CRUD, and calendar management. Tests that require the calendar backend gracefully skip when it's not running. Also fixes: hooks.server.ts env fallbacks, ThrottlerGuard DI error, and auth metrics service TypeScript error. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
129 lines
1.5 KiB
Text
129 lines
1.5 KiB
Text
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
.next/
|
|
.nuxt/
|
|
.output/
|
|
.svelte-kit/
|
|
.astro/
|
|
.expo/
|
|
android/
|
|
ios/
|
|
.netlify/
|
|
|
|
# Turbo
|
|
.turbo/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env*.local
|
|
|
|
# BUT commit the central development env file
|
|
!.env.development
|
|
|
|
# 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/
|
|
.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
|
|
|
|
# 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/matrix-stt-bot/data/
|