HOCON
1 program
Added 2026-02-12T12:31:01Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Human-Optimized Config Object Notation, Typesafe Config
Provenance: commit e01ab15b1b · authored 2026-02-12T13:32:13+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/hoconExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.hocon | linguist | primary | 7.7K files |
Related languages
LLM-contributed programs
Akka HTTP Server Configuration
Provenance: commit e01ab15b1b · authored 2026-02-12T13:32:13+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Example Akka HTTP server configuration
akka {
loglevel = "INFO"
actor {
provider = "akka.actor.LocalActorRefProvider"
default-dispatcher {
type = "Dispatcher"
executor = "fork-join-executor"
fork-join-executor {
parallelism-min = 2
parallelism-factor = 2.0
parallelism-max = 10
}
throughput = 100
}
}
http {
server {
server-header = "Akka HTTP ${akka.http.version}"
idle-timeout = 60 s
request-timeout = 20 s
max-connections = 1024
pipelining-limit = 1
remote-address-header = on
}
client {
connecting-timeout = 10s
idle-timeout = 60 s
}
host-connection-pool {
max-connections = 4
min-connections = 0
max-open-requests = 32
}
}
}
# Application configuration
app {
name = "example-service"
version = "1.0.0"
database {
url = "jdbc:postgresql://localhost:5432/mydb"
driver = "org.postgresql.Driver"
connection-pool {
initial-size = 5
max-size = 20
connection-timeout = 30 seconds
}
}
api {
host = "0.0.0.0"
host = ${?API_HOST}
port = 8080
port = ${?API_PORT}
}
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)