2020-12-21 04:19:02 +03:00
% hledger-web(1)
2016-05-29 09:31:44 +03:00
% _author_
% _monthyear_
2015-10-20 16:26:09 +03:00
2016-04-16 20:09:51 +03:00
_man_({{
2015-10-20 16:26:09 +03:00
# NAME
2020-01-26 03:57:51 +03:00
}})
2015-10-20 16:26:09 +03:00
2020-12-25 04:25:11 +03:00
hledger-web is a web interface (WUI) for the hledger accounting tool.
This manual is for hledger-web _version_ .
2015-10-20 16:26:09 +03:00
2020-01-26 03:57:51 +03:00
_man_({{
2015-10-20 16:26:09 +03:00
# SYNOPSIS
2020-01-26 03:57:51 +03:00
}})
2015-10-20 16:26:09 +03:00
`hledger-web [OPTIONS]` \
`hledger web -- [OPTIONS]`
2020-01-26 03:57:51 +03:00
_man_({{
2017-01-26 20:02:46 +03:00
# DESCRIPTION
2020-01-26 03:57:51 +03:00
}})
2017-01-26 20:02:46 +03:00
_hledgerdescription_
2017-01-26 19:41:06 +03:00
_web_({{
2021-07-29 11:24:25 +03:00
< div class = "screenshots-right" >
2021-03-21 19:10:50 +03:00
< a href = "/images/hledger-web/normal/register.png" class = "highslide" onclick = "return hs.expand(this)" > < img src = "/images/hledger-web/normal/register.png" title = "Account register view with accounts sidebar" / > < / a >
< a href = "/images/hledger-web/normal/journal.png" class = "highslide" onclick = "return hs.expand(this)" > < img src = "/images/hledger-web/normal/journal.png" title = "Journal view" / > < / a >
< a href = "/images/hledger-web/normal/help.png" class = "highslide" onclick = "return hs.expand(this)" > < img src = "/images/hledger-web/normal/help.png" title = "Help dialog" / > < / a >
< a href = "/images/hledger-web/normal/add.png" class = "highslide" onclick = "return hs.expand(this)" > < img src = "/images/hledger-web/normal/add.png" title = "Add form" / > < / a >
2017-01-26 20:02:46 +03:00
< / div >
2016-04-16 20:09:51 +03:00
}})
2016-02-21 13:32:40 +03:00
2015-10-20 16:26:09 +03:00
hledger-web is hledger's web interface. It starts a simple web
2015-10-26 16:46:29 +03:00
application for browsing and adding transactions, and optionally
opens it in a web browser window if possible.
It provides a more user-friendly UI than the hledger CLI or
2015-10-20 16:26:09 +03:00
hledger-ui interface, showing more at once (accounts, the current
account register, balance charts) and allowing history-aware data
entry, interactive searching, and bookmarking.
hledger-web also lets you share a ledger with multiple users, or even the public web.
There is no access control, so if you need that you should put it
behind a suitable web proxy. As a small protection against data loss
when running an unprotected instance, it writes a numbered backup of
the main journal file (only ?) on every edit.
2016-06-10 04:07:08 +03:00
Like hledger, it reads _files_
2021-03-13 18:28:14 +03:00
For more about this see hledger(1).
2015-10-20 16:26:09 +03:00
2019-02-19 10:59:46 +03:00
# OPTIONS
Command-line options and arguments may be used to set an initial
2020-02-08 23:08:47 +03:00
filter on the data. These filter options are not shown in the web UI,
2019-02-19 10:59:46 +03:00
but it will be applied in addition to any search query entered there.
2020-02-08 23:08:47 +03:00
Note: if invoking hledger-web as a hledger subcommand, write `--` before options,
2019-02-19 10:59:46 +03:00
as shown in the synopsis above.
`--serve`
: serve and log requests, don't browse or auto-exit
2019-08-17 09:55:56 +03:00
`--serve-api`
: like --serve, but serve only the JSON web API, without the server-side web UI
2019-02-19 10:59:46 +03:00
`--host=IPADDR`
: listen on this IP address (default: 127.0.0.1)
`--port=PORT`
: listen on this TCP port (default: 5000)
2019-07-18 02:58:33 +03:00
`--socket=SOCKETFILE`
: use a unix domain socket file to listen for requests instead of a TCP socket. Implies
`--serve` . It can only be used if the operating system can provide this type of socket.
2019-02-19 10:59:46 +03:00
`--base-url=URL`
: set the base url (default: http://IPADDR:PORT).
You would change this when sharing over the network, or integrating within a larger website.
`--file-url=URL`
: set the static files url (default: BASEURL/static).
hledger-web normally serves static files itself, but if you wanted to
serve them from another server for efficiency, you would set the url with this.
`--capabilities=CAP[,CAP..]`
: enable the view, add, and/or manage capabilities (default: view,add)
`--capabilities-header=HTTPHEADER`
: read capabilities to enable from a HTTP header, like X-Sandstorm-Permissions (default: disabled)
2020-11-17 00:58:48 +03:00
`--test`
: run hledger-web's tests and exit. hspec test runner args may follow a --, eg: hledger-web --test -- --help
2019-02-19 10:59:46 +03:00
hledger input options:
_inputoptions_
hledger reporting options:
_reportingoptions_
hledger help options:
_helpoptions_
A @FILE argument will be expanded to the contents of FILE,
which should contain one command line option/argument per line.
(To prevent this, insert a `--` argument before.)
2015-10-26 16:46:29 +03:00
By default, hledger-web starts the web app in "transient mode" and
also opens it in your default web browser if possible. In this mode
the web app will keep running for as long as you have it open in a
browser window, and will exit after two minutes of inactivity (no
requests and no browser windows viewing it).
2017-01-26 20:02:46 +03:00
With `--serve` , it just runs the web app without exiting, and logs
2016-11-21 18:38:58 +03:00
requests to the console.
2020-02-08 23:08:47 +03:00
With `--serve-api` , only the JSON web api (see below) is served,
2019-08-17 09:55:56 +03:00
with the usual HTML server-side web UI disabled.
2016-11-21 18:38:58 +03:00
By default the server listens on IP address 127.0.0.1, accessible only to local requests.
2018-01-25 04:31:11 +03:00
You can use `--host` to change this, eg `--host 0.0.0.0` to listen on all configured addresses.
2016-11-21 18:38:58 +03:00
Similarly, use `--port` to set a TCP port other than 5000, eg if you are
running multiple hledger-web instances.
2020-02-08 23:08:47 +03:00
Both of these options are ignored when `--socket` is used. In this case, it
2019-07-18 02:58:33 +03:00
creates an `AF_UNIX` socket file at the supplied path and uses that for communication.
2020-02-08 23:08:47 +03:00
This is an alternative way of running multiple hledger-web instances behind
2019-07-18 02:58:33 +03:00
a reverse proxy that handles authentication for different users.
The path can be derived in a predictable way, eg by using the username within the path.
2020-06-17 04:48:45 +03:00
As an example, `nginx` as reverse proxy can use the variable `$remote_user` to
2020-02-08 23:08:47 +03:00
derive a path from the username used in a [HTTP basic authentication ](https://docs.nginx.com/nginx/admin-guide/security-controls/configuring-http-basic-authentication/ ).
The following `proxy_pass` directive allows access to all `hledger-web`
2019-07-18 02:58:33 +03:00
instances that created a socket in `/tmp/hledger/` :
```
proxy_pass http://unix:/tmp/hledger/${remote_user}.socket;
```
2016-11-21 18:38:58 +03:00
You can use `--base-url` to change the protocol, hostname, port and path that appear in hyperlinks,
2018-01-25 04:31:11 +03:00
useful eg for integrating hledger-web within a larger website.
2016-11-21 18:38:58 +03:00
The default is `http://HOST:PORT/` using the server's configured host address and TCP port
(or `http://HOST` if PORT is 80).
With `--file-url` you can set a different base url for static files,
2018-01-25 04:31:11 +03:00
eg for better caching or cookie-less serving on high performance websites.
2016-11-21 18:38:58 +03:00
2019-02-19 01:40:14 +03:00
# PERMISSIONS
2015-10-26 16:46:29 +03:00
2020-02-08 23:08:47 +03:00
By default, hledger-web allows anyone who can reach it to view the journal
2019-02-19 01:40:14 +03:00
and to add new transactions, but not to change existing data.
You can restrict who can reach it by
2020-02-08 23:08:47 +03:00
- setting the IP address it listens on (see `--host` above).
By default it listens on 127.0.0.1, accessible to all users on the local machine.
2019-02-19 01:40:14 +03:00
- putting it behind an authenticating proxy, using eg apache or nginx
- custom firewall rules
You can restrict what the users who reach it can do, by
2020-02-08 23:08:47 +03:00
- using the `--capabilities=CAP[,CAP..]` flag when you start it,
2019-02-19 01:40:14 +03:00
enabling one or more of the following capabilities. The default value is `view,add` :
- `view` - allows viewing the journal file and all included files
2020-02-08 23:08:47 +03:00
- `add` - allows adding new transactions to the main journal file
- `manage` - allows editing, uploading or downloading the main or included files
2019-02-19 01:40:14 +03:00
- using the `--capabilities-header=HTTPHEADER` flag to specify a HTTP header
from which it will read capabilities to enable. hledger-web on Sandstorm
2020-02-08 23:08:47 +03:00
uses the X-Sandstorm-Permissions header to integrate with Sandstorm's permissions.
2019-02-19 01:40:14 +03:00
This is disabled by default.
2019-02-19 02:01:36 +03:00
# EDITING, UPLOADING, DOWNLOADING
2019-02-19 01:40:14 +03:00
2019-02-19 02:01:36 +03:00
If you enable the `manage` capability mentioned above,
you'll see a new "spanner" button to the right of the search form.
Clicking this will let you edit, upload, or download the journal
2020-02-08 23:08:47 +03:00
file or any files it includes.
2019-02-19 02:01:36 +03:00
Note, unlike any other hledger command, in this mode you (or any visitor)
2020-02-08 23:08:47 +03:00
can alter or wipe the data files.
2019-02-19 01:40:14 +03:00
Normally whenever a file is changed in this way, hledger-web saves a numbered backup
(assuming file permissions allow it, the disk is not full, etc.)
2019-02-19 02:01:36 +03:00
hledger-web is not aware of version control systems, currently; if you use one,
2019-02-19 01:40:14 +03:00
you'll have to arrange to commit the changes yourself (eg with a cron job
or a file watcher like entr).
2020-02-08 23:08:47 +03:00
Changes which would leave the journal file(s) unparseable or non-valid
2019-02-19 02:01:36 +03:00
(eg with failing balance assertions) are prevented.
(Probably. This needs re-testing.)
2019-02-19 01:40:14 +03:00
# RELOADING
hledger-web detects changes made to the files by other means (eg if you edit
it directly, outside of hledger-web), and it will show the new data
2020-02-08 23:08:47 +03:00
when you reload the page or navigate to a new page.
2019-02-19 01:40:14 +03:00
If a change makes a file unparseable,
hledger-web will display an error message until the file has been fixed.
2016-04-10 22:12:12 +03:00
2019-06-11 20:20:45 +03:00
(Note: if you are viewing files mounted from another machine, make
sure that both machine clocks are roughly in step.)
2019-02-19 10:57:58 +03:00
# JSON API
2020-05-21 20:48:04 +03:00
In addition to the web UI, hledger-web also serves a JSON API that can be
used to get data or add new transactions.
2020-05-21 22:51:29 +03:00
If you want the JSON API only, you can use the `--serve-api` flag. Eg:
2020-05-21 20:48:04 +03:00
2020-05-21 22:51:29 +03:00
```shell
$ hledger-web -f examples/sample.journal --serve-api
...
```
You can get JSON data from these routes:
2020-05-21 20:48:04 +03:00
2019-02-19 10:57:58 +03:00
```
2020-09-30 03:27:21 +03:00
/version
2019-02-19 10:57:58 +03:00
/accountnames
/transactions
/prices
/commodities
/accounts
2020-05-21 22:51:29 +03:00
/accounttransactions/ACCOUNTNAME
2019-02-19 10:57:58 +03:00
```
2020-06-06 22:54:38 +03:00
Eg, all account names in the journal (similar to the [accounts ](hledger.html#accounts ) command).
(hledger-web's JSON does not include newlines, here we use python to prettify it):
2020-05-21 22:51:29 +03:00
```shell
$ curl -s http://127.0.0.1:5000/accountnames | python -m json.tool
[
"assets",
"assets:bank",
"assets:bank:checking",
"assets:bank:saving",
"assets:cash",
"expenses",
"expenses:food",
"expenses:supplies",
"income",
"income:gifts",
"income:salary",
"liabilities",
"liabilities:debts"
]
```
Or all transactions:
2019-05-14 19:22:50 +03:00
2020-05-21 22:51:29 +03:00
```shell
$ curl -s http://127.0.0.1:5000/transactions | python -m json.tool
[
{
"tcode": "",
"tcomment": "",
"tdate": "2008-01-01",
"tdate2": null,
"tdescription": "income",
"tindex": 1,
"tpostings": [
{
"paccount": "assets:bank:checking",
"pamount": [
{
"acommodity": "$",
"aismultiplier": false,
"aprice": null,
...
```
Most of the JSON corresponds to hledger's data types; for details of what the fields mean, see the
[Hledger.Data.Json haddock docs ](http://hackage.haskell.org/package/hledger-lib-1.17.1/docs/Hledger-Data-Json.html )
and click on the various data types, eg
[Transaction ](http://hackage.haskell.org/package/hledger-lib-1.17.1/docs/Hledger-Data-Types.html#t:Transaction ).
2020-12-24 23:49:04 +03:00
And for a higher level understanding, see the [journal manual ](hledger.html ).
2020-05-21 22:51:29 +03:00
In some cases there is outer JSON corresponding to a "Report" type.
To understand that, go to the
[Hledger.Web.Handler.MiscR haddock ](http://hackage.haskell.org/package/hledger-web-1.17.1/docs/Hledger-Web-Handler-MiscR.html )
and look at the source for the appropriate handler to see what it returns.
Eg for `/accounttransactions` it's
[getAccounttransactionsR ](http://hackage.haskell.org/package/hledger-web-1.17.1/docs/src/Hledger.Web.Handler.MiscR.html#getAccounttransactionsR ),
returning a "`accountTransactionsReport ...`".
[Looking up ](https://hoogle.haskell.org/?hoogle=accountTransactionsReport ) the haddock for that
we can see that /accounttransactions returns an
[AccountTransactionsReport ](https://hackage.haskell.org/package/hledger-lib-1.17.1/docs/Hledger-Reports-AccountTransactionsReport.html#t:AccountTransactionsReport ),
which consists of a report title and a list of AccountTransactionsReportItem (etc).
You can add a new transaction to the journal with a PUT request to `/add` ,
if hledger-web was started with the `add` capability (enabled by default).
2020-05-21 20:48:04 +03:00
The payload must be the full, exact JSON representation of a hledger transaction
(partial data won't do).
2020-06-06 22:54:38 +03:00
You can get sample JSON from hledger-web's `/transactions` or `/accounttransactions` ,
or you can export it with hledger-lib, eg like so:
2019-05-14 19:22:50 +03:00
```shell
2020-06-06 22:54:38 +03:00
.../hledger$ stack ghci hledger-lib
>>> writeJsonFile "txn.json" (head $ jtxns samplejournal)
2019-05-14 19:22:50 +03:00
>>> :q
```
2020-05-21 22:51:29 +03:00
Here's how it looks as of hledger-1.17
(remember, this JSON corresponds to hledger's
[Transaction ](http://hackage.haskell.org/package/hledger-lib-1.17.1/docs/Hledger-Data-Types.html#t:Transaction )
and related data types):
2020-05-21 19:57:27 +03:00
2020-05-21 19:50:50 +03:00
```json
{
"tcomment": "",
"tpostings": [
{
2020-06-06 22:54:38 +03:00
"pbalanceassertion": null,
"pstatus": "Unmarked",
2020-05-21 19:50:50 +03:00
"pamount": [
{
"aprice": null,
2020-06-06 22:54:38 +03:00
"acommodity": "$",
2020-05-21 19:50:50 +03:00
"aquantity": {
2020-06-06 22:54:38 +03:00
"floatingPoint": 1,
2020-05-21 19:50:50 +03:00
"decimalPlaces": 10,
2020-06-06 22:54:38 +03:00
"decimalMantissa": 10000000000
2020-05-21 19:50:50 +03:00
},
2020-06-06 22:54:38 +03:00
"aismultiplier": false,
2020-05-21 19:50:50 +03:00
"astyle": {
"ascommodityside": "L",
"asdigitgroups": null,
2020-06-06 22:54:38 +03:00
"ascommodityspaced": false,
"asprecision": 2,
"asdecimalpoint": "."
2020-05-21 19:50:50 +03:00
}
}
],
2020-06-06 22:54:38 +03:00
"ptransaction_": "1",
"paccount": "assets:bank:checking",
2020-05-21 19:50:50 +03:00
"pdate": null,
2020-06-06 22:54:38 +03:00
"ptype": "RegularPosting",
"pcomment": "",
2020-05-21 19:50:50 +03:00
"pdate2": null,
"ptags": [],
2020-06-06 22:54:38 +03:00
"poriginal": null
2020-05-21 19:50:50 +03:00
},
{
2020-06-06 22:54:38 +03:00
"pbalanceassertion": null,
"pstatus": "Unmarked",
2020-05-21 19:50:50 +03:00
"pamount": [
{
"aprice": null,
2020-06-06 22:54:38 +03:00
"acommodity": "$",
2020-05-21 19:50:50 +03:00
"aquantity": {
2020-06-06 22:54:38 +03:00
"floatingPoint": -1,
2020-05-21 19:50:50 +03:00
"decimalPlaces": 10,
2020-06-06 22:54:38 +03:00
"decimalMantissa": -10000000000
2020-05-21 19:50:50 +03:00
},
2020-06-06 22:54:38 +03:00
"aismultiplier": false,
2020-05-21 19:50:50 +03:00
"astyle": {
"ascommodityside": "L",
"asdigitgroups": null,
2020-06-06 22:54:38 +03:00
"ascommodityspaced": false,
"asprecision": 2,
"asdecimalpoint": "."
2020-05-21 19:50:50 +03:00
}
}
],
2020-06-06 22:54:38 +03:00
"ptransaction_": "1",
"paccount": "income:salary",
2020-05-21 19:50:50 +03:00
"pdate": null,
2020-06-06 22:54:38 +03:00
"ptype": "RegularPosting",
"pcomment": "",
2020-05-21 19:50:50 +03:00
"pdate2": null,
"ptags": [],
2020-06-06 22:54:38 +03:00
"poriginal": null
2020-05-21 19:50:50 +03:00
}
],
2020-06-06 22:54:38 +03:00
"ttags": [],
2020-05-21 19:50:50 +03:00
"tsourcepos": {
2020-06-06 22:54:38 +03:00
"tag": "JournalSourcePos",
2020-05-21 19:50:50 +03:00
"contents": [
"",
[
1,
1
]
2020-06-06 22:54:38 +03:00
]
2020-05-21 19:50:50 +03:00
},
2020-06-06 22:54:38 +03:00
"tdate": "2008-01-01",
"tcode": "",
"tindex": 1,
"tprecedingcomment": "",
"tdate2": null,
"tdescription": "income",
"tstatus": "Unmarked"
2020-05-21 19:50:50 +03:00
}
```
And here's how to test adding it with curl. This should add a new entry to your journal:
2019-05-14 19:22:50 +03:00
```shell
2020-05-21 19:50:50 +03:00
$ curl http://127.0.0.1:5000/add -X PUT -H 'Content-Type: application/json' --data-binary @txn .json
2019-05-14 19:22:50 +03:00
```
2015-10-20 16:26:09 +03:00
# ENVIRONMENT
2016-06-10 04:07:08 +03:00
_LEDGER_FILE_
2015-10-20 16:26:09 +03:00
# FILES
2016-06-10 04:07:08 +03:00
Reads _files_
2015-10-20 16:26:09 +03:00
# BUGS
The need to precede options with `--` when invoked from hledger is awkward.
`-f-` doesn't work (hledger-web can't read from stdin).
2016-06-10 04:07:08 +03:00
Query arguments and some hledger options are ignored.
2015-10-20 16:26:09 +03:00
Does not work in text-mode browsers.
Does not work well on small screens.