36 lines
516 B
YAML
36 lines
516 B
YAML
# Application settings
|
|
app:
|
|
name: "entworfener_code_service"
|
|
host: "0.0.0.0"
|
|
port: 8000
|
|
reload: true
|
|
|
|
# Logging settings
|
|
logging:
|
|
level: "INFO"
|
|
config_file: "config/logging.yaml"
|
|
|
|
# CORS settings
|
|
cors:
|
|
allow_origins:
|
|
- "*"
|
|
allow_credentials: true
|
|
allow_methods:
|
|
- "*"
|
|
allow_headers:
|
|
- "*"
|
|
|
|
# Paths (relativ zu app/)
|
|
paths:
|
|
log_dir: "logs"
|
|
data_dir: "data"
|
|
|
|
# Server timeouts
|
|
server:
|
|
timeout_keep_alive: 5
|
|
backlog: 2048
|
|
|
|
# Metadata
|
|
meta:
|
|
version: "0.1.0"
|
|
environment: "dev" |