Other files

This commit is contained in:
2026-04-10 18:30:04 -04:00
parent ea4ddd7d41
commit bcbfe2797c
17 changed files with 2221 additions and 16 deletions
+27
View File
@@ -178,6 +178,33 @@ USE_PROXIES = False # Set to True to enable proxy rotation
CAPTCHA_WAIT_TIMEOUT = 120 # Seconds to wait for manual CAPTCHA solve
PAUSE_ON_CAPTCHA = True # Pause monitoring when CAPTCHA detected (requires manual solve)
# =============================================================================
# AUTO-BUY SETTINGS
# =============================================================================
# Credentials are loaded from .env — never put card/login data in this file.
# Copy .env.example to .env and fill in your details.
# Master kill switch — must be True AND the site must be in AUTO_BUY_SITES
AUTO_BUY_ENABLED = False
# Which sites to attempt auto-buy on (subset of SITES_ENABLED)
# Options: "target", "bestbuy", "gamestop"
AUTO_BUY_SITES: list[str] = []
# Dry-run: go through the entire checkout flow but stop before clicking Place Order
# Set to False only when you are ready to make real purchases
AUTO_BUY_DRY_RUN = True
# Price ceiling — skip auto-buy if detected price exceeds this (USD)
AUTO_BUY_MAX_PRICE = 60.00
# Maximum quantity to add to cart per product
AUTO_BUY_MAX_QUANTITY = 1
# Seconds to wait between browser actions during checkout (humanizes behavior)
AUTO_BUY_ACTION_DELAY_MIN = 0.8
AUTO_BUY_ACTION_DELAY_MAX = 2.0
# Logging
LOG_LEVEL = "INFO"