SensusInfra/.gitignore
Sergey Antropoff 7877590440 feat: Initial infrastructure setup for SensusAgent and SensusWorker
- Add Kafka with SSL support and KafkaUI with authentication
- Add PostgreSQL with initialization scripts
- Add ClickHouse cluster with 2 replicas and load balancer
- Add Nginx load balancer for ClickHouse
- Add comprehensive Makefile for infrastructure management
- Add SSL certificate generation for Kafka
- Add complete documentation and quickstart guide
- Add environment configuration with real values

Author: Сергей Антропов
Site: https://devops.org.ru
2025-09-10 11:20:47 +03:00

78 lines
2.2 KiB
Plaintext

# Автор: Сергей Антропов, сайт: https://devops.org.ru
# Назначение: Игнорирование файлов для SensusInfra
# =============================================================================
# ПЕРЕМЕННЫЕ ОКРУЖЕНИЯ
# =============================================================================
.env
.env.local
.env.production
.env.staging
# =============================================================================
# DOCKER
# =============================================================================
.docker/
docker-compose.override.yml
docker-compose.*.yml
!docker-compose.yml
# =============================================================================
# РЕЗЕРВНЫЕ КОПИИ
# =============================================================================
backups/
*.sql
*.backup
*.dump
# =============================================================================
# ЛОГИ
# =============================================================================
logs/
*.log
*.log.*
# =============================================================================
# ВРЕМЕННЫЕ ФАЙЛЫ
# =============================================================================
tmp/
temp/
.tmp/
.temp/
# =============================================================================
# СИСТЕМНЫЕ ФАЙЛЫ
# =============================================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# =============================================================================
# IDE
# =============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
# =============================================================================
# SSL СЕРТИФИКАТЫ
# =============================================================================
kafka-ssl/*.jks
kafka-ssl/ca-*
kafka-ssl/*.pem
kafka-ssl/*.key
kafka-ssl/*.crt
# =============================================================================
# ПРОЧИЕ
# =============================================================================
*.pid
*.seed
*.pid.lock