-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
47 lines (41 loc) · 1.06 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
#
# Rename or copy this file to .env
#
# WARNING: Do NOT commit your .env file to source control.
# (the .gitignore file should prevent this)
#
#
# The name of the account in Wave that corresponds
# to the cash in your iTrade trading account.
#
WAVE_CASH_ACCOUNT=Scotia iTRADE
#
# The name of the account in Wave that corresponds
# to the non-cash assets owned in iTrade.
#
WAVE_EQUITIES_ACCOUNT=Securities
#
# The transactions CSV from iTrade
#
CSV=data/transactions_2021-04-01_to_2021-06-30.csv
#
# A JSON file representing your current portfolio:
# {
# "FOO": { "acb": 1009.99, "qty": 100 },
# "BAR": { "acb": 2009.99, "qty": 200 }
# }
#
HOLDINGS_JSON=data/holdings.sample.json
#
# How many transactions to process in one run of the program.
# Use 0 to process all transactions in the file.
# It's a good idea to set this to a small number initially
# so you can verify correct operation before letting it loose
# with dozens or hundreds of transactions.
#
BATCH_SIZE=3
#
# What port is Chrome listening on for debugging
# 9222 is the default setting.
#
CHROME_PORT=9222