Files
victorialogs-manager/.env.example
Claude Code 7043429150 Initial commit: Project foundation
- Backend: Go API server with Gin framework
- Frontend: React setup (placeholder)
- ML Service: Python FastAPI skeleton
- Docker Compose: Full stack configuration
- Database: PostgreSQL schema with migrations
- Documentation: Implementation plan and README

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-05 00:44:11 +03:00

24 lines
486 B
Plaintext

# Database Configuration
DB_HOST=postgres
DB_PORT=5432
DB_NAME=vlogs_manager
DB_USER=vlogs
DB_PASSWORD=your_secure_password_here
# JWT Configuration
JWT_SECRET=your_jwt_secret_key_at_least_32_characters_long
# VictoriaLogs Configuration
VLOGS_URL=http://victorialogs:9428
# vmalert Configuration
VMALERT_URL=http://vmalert:8880
VMALERT_RULES_DIR=/app/rules
# ML Service Configuration
ML_SERVICE_URL=http://ml-service:8000
# Application Configuration
ENV=development
LOG_LEVEL=info