# FHIR Server Configuration
# Base URL for the FHIR server
FHIR_BASE_URL=http://localhost:8080/fhir
# Allow read operations (returns resource data after write)
FHIR_ALLOW_READ=true
# Allow write operations
FHIR_ALLOW_WRITE=true
# Optional: Bearer token for authentication
FHIR_AUTH_TOKEN=
# Optional: Specific HTTP methods allowed (takes precedence over ALLOW_READ/WRITE)
# Format: comma-separated list like "GET,POST,PUT" or leave empty for default behavior
# Examples:
# FHIR_ALLOWED_METHODS=GET,POST # Allow read and create only
# FHIR_ALLOWED_METHODS=GET # Read-only
# FHIR_ALLOWED_METHODS=POST,PUT # Write-only (create and update)
FHIR_ALLOWED_METHODS=