mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 13:42:19 +00:00
31 lines
680 B
TOML
31 lines
680 B
TOML
[gocardless]
|
|
key = "your-api-key"
|
|
secret = "your-secret-key"
|
|
url = "https://bankaccountdata.gocardless.com/api/v2"
|
|
|
|
[database]
|
|
sqlite = true
|
|
|
|
# Optional: Background sync scheduling
|
|
[scheduler.sync]
|
|
enabled = true
|
|
hour = 3 # 3 AM
|
|
minute = 0
|
|
# cron = "0 3 * * *" # Alternative: use cron expression
|
|
|
|
# Optional: Discord notifications
|
|
[notifications.discord]
|
|
webhook = "https://discord.com/api/webhooks/..."
|
|
enabled = true
|
|
|
|
# Optional: Telegram notifications
|
|
[notifications.telegram]
|
|
token = "your-bot-token"
|
|
chat_id = 12345
|
|
enabled = true
|
|
|
|
# Optional: Transaction filters for notifications
|
|
[filters]
|
|
case_insensitive = ["salary", "utility"]
|
|
case_sensitive = ["SpecificStore"]
|