mirror of
https://github.com/status-im/status-bot.git
synced 2026-08-27 10:41:08 +00:00
49 lines
855 B
YAML
49 lines
855 B
YAML
database:
|
|
type: postgres
|
|
host: "database"
|
|
port: 5432
|
|
schema: "status_app_monitoring"
|
|
name: "status-bot"
|
|
tables:
|
|
messages: "raw_messages"
|
|
community: "raw_community_info"
|
|
|
|
logging:
|
|
format: human
|
|
level: info
|
|
uvicorn_access: false
|
|
|
|
files:
|
|
# Get the latest community chat dates for next run
|
|
current_state: "dates.pkl"
|
|
|
|
bot:
|
|
init_account: true
|
|
name: 'status-bot'
|
|
public_key: "0xExample"
|
|
bot_hash_pepper: '' #Use a large random value
|
|
|
|
backend:
|
|
domain: "status-backend"
|
|
backend_port: 8080
|
|
is_secure: false
|
|
|
|
api:
|
|
enable: true
|
|
host: "0.0.0.0"
|
|
port: 8081
|
|
# api_key: "your-secret-key"
|
|
|
|
modules:
|
|
directories: []
|
|
enabled: ["messaging", "receiver"]
|
|
settings:
|
|
receiver:
|
|
messages_table: "received_messages"
|
|
chats_table: "received_chats"
|
|
|
|
metrics:
|
|
enabled: true
|
|
host: "0.0.0.0"
|
|
port: 8000
|