auth0-integration 0.1.0

Auth0 integration service with JWT validation using RS256
services:
  auth0-integration:
    build:
      context: .
      dockerfile: Dockerfile
    container_name: auth0-integration
    ports:
      - "${PORT:-8080}:8080"
    env_file:
      - .env
    environment:
      - RUST_LOG=${RUST_LOG:-auth0_integration=debug,tower_http=debug}
    restart: unless-stopped
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
      interval: 30s
      timeout: 10s
      retries: 3
      start_period: 10s