-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspringtale.toml.example
More file actions
69 lines (62 loc) · 2.54 KB
/
Copy pathspringtale.toml.example
File metadata and controls
69 lines (62 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Springtale Configuration
#
# Copy this file to springtale.toml and adjust as needed.
# Environment variables override file values (SPRINGTALE_ prefix).
# Example: SPRINGTALE_API_BIND=0.0.0.0:9090
[store]
# Path to the SQLite database file.
# Default: ~/.local/share/springtale/springtale.db
# path = "/home/user/.local/share/springtale/springtale.db"
[crypto]
# Path to the encrypted vault file (contains identity keypair).
# Default: ~/.local/share/springtale/vault.bin
# vault_path = "/home/user/.local/share/springtale/vault.bin"
[transport]
# Path to the Unix domain socket for local transport.
# Default: ~/.local/share/springtale/springtale.sock
# socket_path = "/home/user/.local/share/springtale/springtale.sock"
[api]
# Bind address for the management API.
# Default: 127.0.0.1:8080
# WARNING: binding to 0.0.0.0 exposes the API to the network.
bind = "127.0.0.1:8080"
# Maximum requests per second (rate limiting).
# Default: 100
rate_limit_per_sec = 100
# Plan §1.15 G — utterance def overrides. Keys are utterance names
# (firing, working, listening, idle, failed, down, claimed, yield, helping,
# rally, cascade). A block replaces that one def, so every field is
# required; omitted names keep the built-in def. `locales` maps a locale
# to its own glyph frames (the default `frames` stay the fallback).
#
# [cooperation.utterances.firing]
# carrier = "burst" # speech | burst | thought | none
# shape = "triangle" # triangle | circle | square
# tone = "alert" # calm | alert | urgent
# frames = ["!"]
# locales = { ja = ["!"] }
# mirror_rtl = false
# label_key = "utter.firing"
# ttl_ticks = 2
# block_ticks = 3
# Connector configuration, for a headless install with no UI.
#
# One table per connector, under `connectors`, named by the connector's
# config key — the same key the panel and the onboarding wizard write.
# The daemon reads a table for every connector that is compiled in, so a
# connector added later needs no change to the daemon to be configurable
# here. `springtale-cli connector available` prints the config key of
# every connector in your build; the bare `[telegram]` form is still
# read, for config files that already use it.
#
# Credentials in this file sit on disk in plaintext: prefer the vault
# (configure through the app, or via the API) and keep this for values
# you are content to leave readable, or protect the file at 0600.
#
# [connectors.telegram]
# bot_token = "123456:ABC-DEF..."
# update_mode = "polling" # polling | webhook
#
# [connectors.github]
# token = "ghp_..."
# webhook_secret = "..."