The previous 0-100 scale with a * 10 conversion was confusing — CheapShark returns deal ratings as floats (e.g. 9.8, 7.5) so the config should match. Default is now 8.0 instead of 80. https://claude.ai/code/session_01LPpSZFfyh6vdV5HGFWjoQX
17 lines
451 B
Plaintext
17 lines
451 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
|
|
|
|
# Database path (inside the container, mount a volume for persistence)
|
|
DATABASE_PATH=/data/deals.db
|