voirs-recognizer 0.1.0-alpha.3

Voice recognition and analysis capabilities for VoiRS
Documentation
# VoiRS Recognizer Environment Configuration
# Copy this file to .env and customize the values

# Application Configuration
VERSION=0.1.0-alpha.2
RUST_LOG=info

# Service Ports
API_PORT=8080
WASM_PORT=8081
DEV_PORT=3000
DEV_API_PORT=8000
REDIS_PORT=6379
POSTGRES_PORT=5432
HTTP_PORT=80
HTTPS_PORT=443
PROMETHEUS_PORT=9090
GRAFANA_PORT=3001
LOKI_PORT=3100

# API Configuration
MAX_UPLOAD_SIZE=100MB
CORS_ORIGIN=*

# Database Configuration
POSTGRES_DB=voirs
POSTGRES_USER=voirs
POSTGRES_PASSWORD=voirs123

# Monitoring Configuration
GRAFANA_USER=admin
GRAFANA_PASSWORD=admin

# Paths (for volume mounting)
MODELS_PATH=./models

# Build Configuration
BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
VCS_REF=$(git rev-parse HEAD)