61 lines
913 B
YAML
61 lines
913 B
YAML
# bottin instance configurations
|
|
bottin:
|
|
|
|
# protocol
|
|
#
|
|
# possible values:
|
|
#
|
|
# - http
|
|
# - https
|
|
protocol: 'http'
|
|
|
|
# bottin instance hostname
|
|
host: 'localhost'
|
|
|
|
# bottin instance port
|
|
port: '1312'
|
|
|
|
# bottin instance username
|
|
username: 'bottin'
|
|
|
|
# bottin instance password
|
|
password: 'bottin'
|
|
|
|
|
|
# database configurations
|
|
db:
|
|
|
|
# database type
|
|
#
|
|
# possible values:
|
|
#
|
|
# - sqlite
|
|
type: 'sqlite'
|
|
|
|
# sqlite configurations
|
|
sqlite:
|
|
|
|
# sqlite database path
|
|
#
|
|
# doesn't need to exist, but directory must be writable
|
|
# for bottin-agenda to create it.
|
|
path: '/var/lib/bottin-agenda/bottin-agenda.db'
|
|
|
|
# data import
|
|
import:
|
|
|
|
# batch size for database imports
|
|
insert_batch_size: 500
|
|
|
|
# authentication
|
|
login:
|
|
|
|
# credentials
|
|
username: 'agenda'
|
|
password: 'agenda'
|
|
|
|
# bottin-agenda server options
|
|
server:
|
|
|
|
# bottin-agenda instance port
|
|
port: '1313'
|