kegani 0.1.1

A developer-friendly, ergonomic, production-ready Rust web framework
Documentation
# Kegani Framework Configuration
# This file is used as a template for configuration

# Application settings
host: "0.0.0.0"
port: 8080

# Database configuration
database:
  url: "postgres://localhost:5432/kegani"
  max_connections: 10
  min_connections: 2

# Redis configuration
redis:
  url: "redis://localhost:6379"
  pool_size: 5

# Logging configuration
logging:
  level: "info"
  format: "json"

# CORS configuration
cors:
  allowed_origins:
    - "*"
  allowed_methods:
    - "GET"
    - "POST"
    - "PUT"
    - "DELETE"
    - "PATCH"
  max_age: 3600