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
Removed from git tracking: - docs/ folder (all planning and implementation documentation) - CLAUDE.md (AI assistant instructions) - start-dev.sh and stop-dev.sh (development scripts) Updated .gitignore to exclude: - Documentation and planning files (docs/, CLAUDE.md) - Development scripts and logs (*.dev.log, start-dev.sh, stop-dev.sh) - Development environment folders (.dev/, dev-data/) - Temporary development files (*.tmp, *.temp, .scratch/) These files remain available locally for development but won't be committed to the repository. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
105 lines
1.3 KiB
Plaintext
105 lines
1.3 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
|
|
|
|
# Development scripts and logs
|
|
start-dev.sh
|
|
stop-dev.sh
|
|
*.dev.log
|
|
/tmp/*.log
|
|
|
|
# Development environment
|
|
.dev/
|
|
dev-data/
|
|
|
|
# Temporary development files
|
|
*.tmp
|
|
*.temp
|
|
.scratch/
|