20 lines
537 B
Plaintext
20 lines
537 B
Plaintext
# Matrix connection
|
|
MATRIX_HOMESERVER_URL=https://matrix.example.com
|
|
MATRIX_BOT_USER_ID=@dealsbot:example.com
|
|
MATRIX_BOT_ACCESS_TOKEN=syt_...
|
|
MATRIX_DEALS_ROOM_ID=!roomid:example.com
|
|
|
|
# IsThereAnyDeal API key (optional — enables historical low detection)
|
|
ITAD_API_KEY=
|
|
|
|
# Deal filtering
|
|
MIN_DEAL_RATING=8.0
|
|
MIN_DISCOUNT_PERCENT=50
|
|
MAX_PRICE_USD=20
|
|
|
|
# Send an intro message to the room on startup (true/false)
|
|
SEND_INTRO_MESSAGE=false
|
|
|
|
# Database path (inside the container, mount a volume for persistence)
|
|
DATABASE_PATH=/data/deals.db
|