🚀 Docker Production Optimizations: - Chiseled Ubuntu base image for minimal attack surface - Non-root user execution with security hardening - Read-only filesystem with targeted writable volumes - Resource limits (1GB RAM, 1 CPU) with health checks - Multi-stage builds optimized for caching - Zero-downtime deployment automation 🔍 Comprehensive Monitoring Stack: - Prometheus metrics collection with custom rules - Grafana dashboards for application visualization - AlertManager with email notifications for critical events - Fluentd centralized logging with retention policies - Node Exporter + cAdvisor for system/container metrics - Health check endpoint (/health) for container orchestration 📋 Production Deployment Ready: - Complete deployment scripts with backup strategy - Environment templates for secure configuration - Performance monitoring and alerting rules - Enterprise-grade security and observability 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
762 B
Plaintext
59 lines
762 B
Plaintext
# Version control and IDE
|
|
**/.git
|
|
**/.gitignore
|
|
**/.vs
|
|
**/.vscode
|
|
**/.idea
|
|
**/.project
|
|
**/.settings
|
|
|
|
# Build outputs and cache
|
|
**/bin
|
|
**/obj
|
|
**/TestResults
|
|
**/node_modules
|
|
**/npm-debug.log
|
|
|
|
# Docker and deployment files
|
|
**/.dockerignore
|
|
**/docker-compose*
|
|
**/Dockerfile*
|
|
**/deploy-*.sh
|
|
**/docker/
|
|
|
|
# Environment and secrets
|
|
**/.env*
|
|
**/secrets.dev.yaml
|
|
**/values.dev.yaml
|
|
|
|
# Documentation and project files
|
|
README.md
|
|
ROADMAP.md
|
|
LICENSE
|
|
CLAUDE.md
|
|
**/.claude
|
|
|
|
# Test projects (not needed in production)
|
|
**/*.Tests
|
|
**/TeleBot
|
|
|
|
# Runtime generated files
|
|
**/logs
|
|
**/uploads
|
|
**/data
|
|
**/*.db
|
|
**/*.log
|
|
|
|
# User-specific files
|
|
**/*.*proj.user
|
|
**/*.dbmdl
|
|
**/*.jfm
|
|
**/.toolstarget
|
|
|
|
# Azure and Kubernetes
|
|
**/azds.yaml
|
|
**/charts
|
|
|
|
# Development artifacts
|
|
**/publish
|
|
**/backups |