add samuel donated alias
[utils.git] / README.txt
1 https://git.libre-soc.org/?p=utils.git;a=summary
2
3 clone with:
4 git clone 'git://git.libre-soc.org/utils.git'
5
6 as root install with
7
8 python3 setup.py develop
9
10 or as user, just remember to add ~/.local/bin to $PATH)
11
12 python3 setup.py develop --user
13
14 run as:
15
16 nohup budget-sync -c budget-sync-config.toml -o mdwn
17
18 then examine the nohup.out and also the individual markdown files,
19 or compile to html first (after apt-get install python-markdown):
20
21 markdown_py -f lkcl.html lkcl.mdwn
22
23 to perform multiple *DIRECT* database updates automatically, use the
24 following command:
25
26 python3 ./src/budget_sync/update.py -c budget-sync-config.toml \
27 --user {name_in_TOML_field} \
28 --username {BUGZILLA_EMAIL} \
29 --password '{BUGZILLA_PASSWORD}' \
30 --bug NNN,MMM,OOO \
31 --submitted=YYYY-MM-DD or --paid=YYYY-MM-DD
32
33 **PLEASE EXERCISE EXTREME CAUTION WHEN USING THIS COMMAND**
34