-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
38 lines (30 loc) · 1.48 KB
/
.env.example
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
# the hibiscus h2 db user; this is hibiscus by default
H2_USER="hibiscus"
# the hibiscus h2 db hashed (b64 encoded?) password. Find it under:
# Hibicus > Über (About) > Datenbank Info (Database Info)
# the example password has below is for the test hibiscus/h2db/hibiscus.mv.db
# and the password `eX4mP13p455w0Rd`
H2_PASSWORD="RQUze6hF9LpX4kgMY/6bAe8LrMI= RQUze6hF9LpX4kgMY/6bAe8LrMI="
# the (relative) path to the the H2 DB Java driver; it comes with hibiscus;
# find it under `jameica/lib/h2`
H2_JAR='hibiscus/h2-1.4.199.jar'
# relative path to a hibiscus uid to beancount accounts mapping; e.g.
# `1,Assets:EUR:DKB:Giro`; can contain lines with comments
ACCOUNTS_MAPPING_CSV='hibiscus/.accounts'
# relative path to a file with a list of already processed hibiscus uids (HUIDs);
# these will be skipped, to avoid duplicate beans;
# if the file does not exist, it will be created on first run
PROCESSED_HUIDS_FILE='hibiscus/.huids_processed'
# if set to true, will ignore all hibiscus unique ids already imported
# based on PROCESSED_HUIDS_FILE; this env setting is overridden by what is directly given to
# importer() function
IGNORE_ALREADY_PROCESSED=true
# optionally limit number of items returned from the H2 DB, e.g.
# LIMIT_ENTRIES=300
# default: return all entries
# optionally limit items returned from the H2 DB by date, e.g.
# SINCE_DATE=2024-01-01
# default: return all entries
# optionally limit items returned from the H2 DB by HUID, e.g.
# SINCE_HUID=2133
# default: return all entries