Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
// HTTP server configuration
Server ServerConfig `json:"server"`
// Database configuration
Database database.DbConfig `json:"database"`
// Watch/streaming settings
WatchBufferSize int `json:"watchBufferSize" pflag:",Buffer size for watch streams"`
// Queue service URL for enqueuing actions
QueueServiceURL string `json:"queueServiceUrl" pflag:",URL of the queue service"`
}
Config holds the configuration for the Runs service
type ServerConfig ¶
type ServerConfig struct {
Port int `json:"port" pflag:",Port to bind the HTTP server"`
Host string `json:"host" pflag:",Host to bind the HTTP server"`
}
ServerConfig holds HTTP server configuration
Click to show internal directories.
Click to hide internal directories.