- Reorganized project structure into services/ and apps/ directories for better separation of concerns - Added comprehensive CI/CD pipeline with GitHub Actions for testing and Docker builds - Created .dockerignore file to optimize container builds - Updated Makefile with new targets for each service and application - Added detailed README with architecture overview, setup instructions and development guidelines - Moved cron-analyzer to dedicate
31 lines
248 B
Text
31 lines
248 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Development files
|
|
.local.env
|
|
|
|
# Playwright
|
|
.playwright-mcp
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|