add new binutils 1259 grant temporary name
[utils.git] / README.txt
1 https://git.libre-soc.org/?p=utils.git;a=summary
2
3 clone with:
4 git clone 'https://git.libre-soc.org/git/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 to create JSON output with comment #0 for each MoU task:
19
20 nohup budget-sync -c budget-sync-config.toml -o mdwn --comments
21
22 then examine the nohup.out and also the individual markdown files,
23 or compile to html first (after apt-get install python-markdown):
24
25 markdown_py -f lkcl.html lkcl.mdwn
26
27 to perform multiple *DIRECT* database updates automatically, use the
28 following command:
29
30 python3 ./src/budget_sync/update.py -c budget-sync-config.toml \
31 --user {name_in_TOML_field} \
32 --username {BUGZILLA_EMAIL} \
33 --password '{BUGZILLA_PASSWORD}' \
34 --bug NNN,MMM,OOO \
35 --submitted=YYYY-MM-DD or --paid=YYYY-MM-DD
36
37 **PLEASE EXERCISE EXTREME CAUTION WHEN USING THIS COMMAND**
38