Cybersecurity-Projects/PROJECTS/beginner/canary-token-generator/backend/.env.example

28 lines
486 B
Plaintext

# AngelaMos | 2026
# .env.example
# Environment: development, staging, production
ENVIRONMENT=development
# Server
HOST=0.0.0.0
PORT=8080
# Database
DATABASE_URL=postgres://postgres:postgres@localhost:5432/app?sslmode=disable
# Redis
REDIS_URL=redis://localhost:6379/0
# Rate Limiting
RATE_LIMIT_REQUESTS=100
RATE_LIMIT_WINDOW=1m
# OpenTelemetry
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_SERVICE_NAME=canary-token-generator
# Logging
LOG_LEVEL=debug
LOG_FORMAT=text