--- "$schema": "http://json-schema.org/schema#" id: "hatter://server.yaml#" title: Server description: Server configuration type: object required: - repositories properties: log: "$ref": "hatter://logging.yaml#" host: title: Host description: Listening host name type: string default: "0.0.0.0" port: title: TCP port description: Listening TCP port type: integer default: 24000 db_path: title: DB path description: SQLite database path type: string default: hatter.db webhook_path: title: Webhook path type: string default: '/webhook' repositories: title: Repositories description: List of all repository urls type: array items: type: string ...