- add django settings module documentation - use default for previously required fields BREAKING CHANGE: The API command line interface require the configuration file to be present. The default configuration file path is `/etc/airtime/airtime.conf`
12 lines
266 B
Python
12 lines
266 B
Python
from libretime_shared.config import (
|
|
BaseConfig,
|
|
DatabaseConfig,
|
|
GeneralConfig,
|
|
RabbitMQConfig,
|
|
)
|
|
|
|
|
|
class Config(BaseConfig):
|
|
general: GeneralConfig
|
|
database: DatabaseConfig = DatabaseConfig()
|
|
rabbitmq: RabbitMQConfig = RabbitMQConfig()
|