-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.py
35 lines (32 loc) · 779 Bytes
/
vars.py
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
# =============================== #
# GLOBAL
order_id_col = 0
ordernum_col = 1
order_date_col = 2
order_invoiceid_col = 3
order_status_col = 4
order_amount_col = 5
client_id_col = 6
client_firstname_col = 7
client_lastname_col = 8
client_companyname_col = 9
client_email_col = 10
whmcs_client_profile_link_col = 11
whmcs_order_link_col = 12
product_id_col = 13
product_domain_col = 14
product_domainstatus_col = 15
whmcs_product_link_col = 16
cell_background = "#81BEF7"
# Final file delivered
export_file = "results.xlsx"
# =============================== #
# DATABASE
db_host = "CHANGE_ME"
db_user = "CHANGE_ME"
db_name = "CHANGE_ME"
db_pass = "CHANGE_ME"
# =============================== #
# WHMCS
whmcs_url = "https://CHANGE_ME/admin"
# =============================== #