Files
maternal-app/.gitignore
Andrei c9f68076b8
Some checks failed
ParentFlow CI/CD Pipeline / Backend Tests (push) Has been cancelled
ParentFlow CI/CD Pipeline / Frontend Tests (push) Has been cancelled
ParentFlow CI/CD Pipeline / Security Scanning (push) Has been cancelled
ParentFlow CI/CD Pipeline / Build Docker Images (map[context:maternal-app/maternal-app-backend dockerfile:Dockerfile.production name:backend]) (push) Has been cancelled
ParentFlow CI/CD Pipeline / Build Docker Images (map[context:maternal-web dockerfile:Dockerfile.production name:frontend]) (push) Has been cancelled
ParentFlow CI/CD Pipeline / Deploy to Development (push) Has been cancelled
ParentFlow CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Lint and Test (push) Has been cancelled
CI/CD Pipeline / E2E Tests (push) Has been cancelled
CI/CD Pipeline / Build Application (push) Has been cancelled
chore: Remove additional development files from git tracking
Removed from git tracking:
- Development documentation: ADMIN_IMPLEMENTATION_STATUS.md, DATABASE_SCHEMA_SYNC.md, PROGRESS.md, PRODUCTION_DEPLOYMENT.md, PRODUCTION_INSTALLATION.md, TESTING.md, PACKAGE_UPGRADE_PLAN.md, BACKUP_STRATEGY.md
- Production scripts: deploy-production.sh, migrate-production.sh, start-production.sh, stop-production.sh
- Test files: test-azure-openai.js, test-prompt-injection.*, test-rate-limit.sh, test-voice-intent.mjs, test-audio.wav
- Example files: example-queries.gql

Updated .gitignore to exclude:
- Development documentation patterns (*_IMPLEMENTATION_STATUS.md, etc.)
- Production deployment scripts
- Test scripts and files (test-*.js, test-*.ts, test-*.mjs)
- Temp directories (**/temp/)
- Example files (example-queries.gql)

All files remain available locally but won't clutter the repository.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-08 11:12:21 +00:00

130 lines
1.7 KiB
Plaintext

# Dependencies
node_modules/
maternal-app/node_modules/
maternal-app-backend/node_modules/
maternal-web/node_modules/
# Environment variables
.env
.env.local
.env.development
.env.production
maternal-app/.env
maternal-app-backend/.env
maternal-web/.env
# Build outputs
dist/
build/
maternal-app/dist/
maternal-app-backend/dist/
maternal-web/.next/
maternal-web/out/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
*.pid
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Expo
maternal-app/.expo/
maternal-app/.expo-shared/
# Database
*.sqlite
*.sqlite3
# Docker volumes
postgres_data/
redis_data/
mongodb_data/
minio_data/
# Testing
coverage/
.nyc_output/
# TypeScript
*.tsbuildinfo
# React Native
maternal-app/android/
maternal-app/ios/
!maternal-app/android/.gitkeep
!maternal-app/ios/.gitkeep
# Caches
.cache/
.turbo/
.parcel-cache/
.npm/
.eslintcache
# Next.js specific
maternal-web/.next/
maternal-web/out/
maternal-web/.cache/
# Package manager lock files (optional - uncomment if you want to ignore)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml
# Documentation and planning (development only)
docs/
CLAUDE.md
*_IMPLEMENTATION_STATUS.md
DATABASE_SCHEMA_SYNC.md
DATABASE_SYNC_SUMMARY.txt
PROGRESS.md
PRODUCTION_DEPLOYMENT.md
PRODUCTION_INSTALLATION.md
TESTING.md
PACKAGE_UPGRADE_PLAN.md
**/docs/*.md
!README.md
# Development scripts and logs
start-dev.sh
stop-dev.sh
deploy-production.sh
migrate-production.sh
start-production.sh
stop-production.sh
*.dev.log
/tmp/*.log
# Development environment
.dev/
dev-data/
temp/
**/temp/
# Temporary development files
*.tmp
*.temp
.scratch/
# Test files and examples
test-*.js
test-*.ts
test-*.mjs
example-queries.gql
**/scripts/test-*.sh
**/scripts/test-*.mjs
**/scripts/test-*.ts