2016-05-29 09:31:44 +03:00
|
|
|
% hledger-web(1) hledger-web _version_
|
|
|
|
% _author_
|
|
|
|
% _monthyear_
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
_web_({{
|
2017-01-04 21:50:16 +03:00
|
|
|
_docversionlinks_({{hledger-web}})
|
2016-04-16 21:00:39 +03:00
|
|
|
_toc_
|
2016-04-16 20:09:51 +03:00
|
|
|
}})
|
2016-06-10 04:07:08 +03:00
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
_man_({{
|
2015-10-20 16:26:09 +03:00
|
|
|
# NAME
|
|
|
|
|
|
|
|
hledger-web - web interface for the hledger accounting tool
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
`hledger-web [OPTIONS]`\
|
|
|
|
`hledger web -- [OPTIONS]`
|
|
|
|
|
2017-01-26 20:02:46 +03:00
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
_hledgerdescription_
|
|
|
|
}})
|
|
|
|
|
2017-01-26 19:41:06 +03:00
|
|
|
_web_({{
|
2016-04-10 22:12:12 +03:00
|
|
|
<style>
|
2017-01-26 20:02:46 +03:00
|
|
|
.highslide img {max-width:200px; border:thin grey solid; margin:0 0 1em 1em; }
|
2016-04-10 22:12:12 +03:00
|
|
|
.highslide-caption {color:white; background-color:black;}
|
|
|
|
</style>
|
2017-01-26 20:02:46 +03:00
|
|
|
<div style="float:right; max-width:200px; text-align:right;">
|
2016-04-10 22:12:12 +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_
|
|
|
|
For more about this see hledger(1), hledger_journal(5) etc.
|
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
|
|
|
|
filter on the data. These filter options are not shown in the web UI,
|
|
|
|
but it will be applied in addition to any search query entered there.
|
|
|
|
|
|
|
|
Note: if invoking hledger-web as a hledger subcommand, write `--` before options,
|
|
|
|
as shown in the synopsis above.
|
|
|
|
|
|
|
|
`--serve`
|
|
|
|
: serve and log requests, don't browse or auto-exit
|
|
|
|
|
|
|
|
`--host=IPADDR`
|
|
|
|
: listen on this IP address (default: 127.0.0.1)
|
|
|
|
|
|
|
|
`--port=PORT`
|
|
|
|
: listen on this TCP port (default: 5000)
|
|
|
|
|
|
|
|
`--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)
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-02-19 01:40:14 +03:00
|
|
|
By default, hledger-web allows anyone who can reach it to view the journal
|
|
|
|
and to add new transactions, but not to change existing data.
|
|
|
|
|
|
|
|
You can restrict who can reach it by
|
|
|
|
|
|
|
|
- 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.
|
|
|
|
- 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
|
|
|
|
|
|
|
|
- using the `--capabilities=CAP[,CAP..]` flag when you start it,
|
|
|
|
enabling one or more of the following capabilities. The default value is `view,add`:
|
|
|
|
- `view` - allows viewing the journal file and all included files
|
|
|
|
- `add` - allows adding new transactions to the main journal file
|
|
|
|
- `manage` - allows editing, uploading or downloading the main or included files
|
|
|
|
|
|
|
|
- using the `--capabilities-header=HTTPHEADER` flag to specify a HTTP header
|
|
|
|
from which it will read capabilities to enable. hledger-web on Sandstorm
|
|
|
|
uses the X-Sandstorm-Permissions header to integrate with Sandstorm's permissions.
|
|
|
|
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
|
|
|
|
file or any files it includes.
|
|
|
|
|
|
|
|
Note, unlike any other hledger command, in this mode you (or any visitor)
|
|
|
|
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).
|
|
|
|
|
2019-02-19 02:01:36 +03:00
|
|
|
Changes which would leave the journal file(s) unparseable or non-valid
|
|
|
|
(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
|
|
|
|
when you reload the page or navigate to a new page.
|
|
|
|
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-02-19 10:57:58 +03:00
|
|
|
# JSON API
|
|
|
|
|
|
|
|
In addition to the web UI, hledger-web provides some JSON API routes.
|
|
|
|
These are similar to the API provided by the hledger-api tool, but
|
|
|
|
it may be convenient to have them in hledger-web also.
|
|
|
|
```
|
|
|
|
/accountnames
|
|
|
|
/transactions
|
|
|
|
/prices
|
|
|
|
/commodities
|
|
|
|
/accounts
|
|
|
|
/accounttransactions/#AccountName
|
|
|
|
```
|
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
_man_({{
|
2016-02-21 13:32:40 +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.
|
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
}})
|