Merge _configs/ into config/ for single configuration directory. Update all path references. Changes: - Move _configs/* to config/ - Update .gitignore for new patterns - No code references to _configs/ found Impact: -1 root directory (layout_conventions.md compliance)
25 lines
834 B
Plaintext
25 lines
834 B
Plaintext
# Health Check Feature Configuration
|
|
#
|
|
# This configuration controls the health check endpoint which provides
|
|
# status information about the server, database, and dependencies.
|
|
# This file is loaded ONLY if [server.features.health].enabled = true in the main config.
|
|
# (The enabled flag is set in the main lifecycle-api-config.toml file)
|
|
|
|
[health]
|
|
|
|
# Health check endpoint at GET /api/health
|
|
# Returns JSON with status, version, uptime, database connectivity
|
|
|
|
# Database connectivity check timeout (milliseconds)
|
|
# The health check will ping the database and report connectivity status
|
|
database_timeout_ms = 5000
|
|
|
|
# Include version information in health response
|
|
include_version = true
|
|
|
|
# Include uptime information in health response
|
|
include_uptime = true
|
|
|
|
# Include database status in health response
|
|
include_database_status = true
|