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/hocon
LLM (this repo) · 1PldbLinguist

Extensions 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.
ExtensionSourceStrengthSWH
.hoconlinguistprimary7.7K files

Related languages

RON (0.23)BON (0.22)Z notation (0.14)Notation3 (0.13)HCL (0.12)

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
code.conf · license: Apache-2.0 · added: 2026-02-12T12:31:01Z
# 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.)

Contribute — propose a file extension

Tell us where to find evidence about HOCON (mapped to pl/hocon). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/HOCON/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Hoc hOCR →