This repository has been archived by the owner on Mar 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.sample
107 lines (77 loc) · 3.4 KB
/
.env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
######################################
######## Common Configuration ########
######################################
# Base configuration.
NUMBER_OF_ITEMS=1
ENABLED_BUYERS=AmazonBuyer,NeweggBuyer
# Item 1
ITEM_NAME_1="Ryzen 9 5950X"
MAX_BUY_COUNT_1=1
MAX_COST_PER_ITEM_1=960.00
# Item 2
ITEM_NAME_2="Ryzen 9 5900X"
MAX_BUY_COUNT_2=1
MAX_COST_PER_ITEM_2=660.00
# Performs a test run without actually buying anything.
IS_TEST_RUN=True
# This is timeout ins seconds. Change it according to your connection speed and reliability if necessary.
# Keeping this value high also helps reduce risk of receiving captcha challenges.
TIMEOUT_IN_SECONDS=5
# Ignore this. It's a ducked up piece of value for the ducked up implementation we currently have.
MAX_RETRY_LIMIT=2
######################################
######## Amazon Configuration ########
######################################
AMAZON_AFFILIATE_URL="https://smile.amazon.com"
# Comma separated list of whitelisted sellers.
AMAZON_WHITELISTED_SELLERS="Amazon"
# Only uses the Buy Now button. Skips the Add to Cart flow.
AMAZON_BUY_NOW_ONLY=False
######## Item 1 ########
AMAZON_LOGIN_EMAIL_1="AMAZON_LOGIN_EMAIL"
AMAZON_LOGIN_PASSWORD_1="AMAZON_LOGIN_PASSWORD"
AMAZON_ITEM_ENDPOINT_1="/AMD-Ryzen-5950X-32-Thread-Processor/dp/B0815Y8J9N"
######## Item 2 ########
AMAZON_LOGIN_EMAIL_2="AMAZON_LOGIN_EMAIL"
AMAZON_LOGIN_PASSWORD_2="AMAZON_LOGIN_PASSWORD"
AMAZON_ITEM_ENDPOINT_2="/AMD-Ryzen-5900X-24-Thread-Processor/dp/B08164VTWH"
# Amazon item endpoint samples.
# AMAZON_ITEM_ENDPOINT_X="/AMD-Ryzen-3900X-24-Thread-Processor/dp/B07SXMZLP9"
# AMAZON_ITEM_ENDPOINT_X="/AMD-Ryzen-3900XT-24-Threads-Processor/dp/B089WD454D"
# AMAZON_ITEM_ENDPOINT_X="/AMD-Ryzen-3950X-32-Thread-Processor/dp/B07ZTYKLZW"
# AMAZON_ITEM_ENDPOINT_X="/AMD-Ryzen-5900X-24-Thread-Processor/dp/B08164VTWH"
# AMAZON_ITEM_ENDPOINT_X="/AMD-Ryzen-5950X-32-Thread-Processor/dp/B0815Y8J9N"
#######################################
######## Walmart Configuration ########
#######################################
WALMART_AFFILIATE_URL="https://www.walmart.com"
WALMART_WHITELISTED_SELLERS="Walmart"
WALMART_STOCK_CHECK_MIN_WAIT_IN_SECONDS=120
######## Item 1 ########
WALMART_LOGIN_EMAIL_1="WALMART_LOGIN_EMAIL"
WALMART_LOGIN_PASSWORD_1="WALMART_LOGIN_PASSWORD"
WALMART_ITEM_ENDPOINT_1="/ip/AMD-Ryzen-9-5950X-16-core-32-thread-Desktop-Processor/159710953"
######## Item 2 ########
WALMART_LOGIN_EMAIL_2="WALMART_LOGIN_EMAIL"
WALMART_LOGIN_PASSWORD_2="WALMART_LOGIN_PASSWORD"
WALMART_ITEM_ENDPOINT_2="/ip/AMD-Ryzen-9-5900X-12-core-24-thread-Desktop-Processor/647899167"
######################################
######## Newegg Configuration ########
######################################
NEWEGG_AFFILIATE_URL="https://www.newegg.com"
NEWEGG_SECURE_SUBDOMAIN_URL="https://secure.newegg.com"
NEWEGG_WHITELISTED_SELLERS="Newegg"
NEWEGG_LOGIN_CONFIRMATION_WAIT_IN_SECONDS=15
NEWEGG_STOCK_CHECK_MIN_WAIT_IN_SECONDS=30
######## Item 1 ########
NEWEGG_LOGIN_EMAIL_1="NEWEGG_LOGIN_EMAIL"
NEWEGG_LOGIN_PASSWORD_1="NEWEGG_LOGIN_PASSWORD"
NEWEGG_ITEM_ENDPOINT_1="/amd-ryzen-9-5950x/p/N82E16819113663"
NEWEGG_CARD_NUMBER_1="NEWEGG_DEFAULT_CARD_NUMBER"
NEWEGG_CVV2_1=NEWEGG_DEFAULT_CARD_CVV2
######## Item 2 ########
NEWEGG_LOGIN_EMAIL_2="NEWEGG_LOGIN_EMAIL"
NEWEGG_LOGIN_PASSWORD_2="NEWEGG_LOGIN_PASSWORD"
NEWEGG_ITEM_ENDPOINT_2="/amd-ryzen-9-5900x/p/N82E16819113664"
NEWEGG_CARD_NUMBER_2="NEWEGG_DEFAULT_CARD_NUMBER"
NEWEGG_CVV2_2=NEWEGG_DEFAULT_CARD_CVV2