2016-05-29 09:31:44 +03:00
|
|
|
% hledger-api(1) hledger-api _version_
|
|
|
|
% _author_
|
|
|
|
% _monthyear_
|
2015-12-03 19:53:29 +03:00
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
_web_({{
|
2017-01-04 21:50:16 +03:00
|
|
|
_docversionlinks_({{hledger-api}})
|
2016-04-16 20:09:51 +03:00
|
|
|
}})
|
2016-02-21 13:32:40 +03:00
|
|
|
|
2016-06-10 04:07:08 +03:00
|
|
|
_man_({{
|
2015-12-03 19:53:29 +03:00
|
|
|
# NAME
|
|
|
|
|
|
|
|
hledger-api - web API server for the hledger accounting tool
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
`hledger-api [OPTIONS]`\
|
|
|
|
`hledger api -- [OPTIONS]`
|
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
2016-06-10 04:07:08 +03:00
|
|
|
_hledgerdescription_
|
2016-04-16 20:09:51 +03:00
|
|
|
}})
|
2016-02-21 13:32:40 +03:00
|
|
|
|
2015-12-03 19:53:29 +03:00
|
|
|
hledger-api is a simple web API server, intended to support
|
|
|
|
client-side web apps operating on hledger data. It comes with a series
|
2016-09-22 21:13:42 +03:00
|
|
|
of simple client-side app examples, which drive its evolution.
|
2015-12-03 19:53:29 +03:00
|
|
|
|
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-12-03 19:53:29 +03:00
|
|
|
|
2016-11-21 19:01:06 +03:00
|
|
|
The server listens on IP address 127.0.0.1, accessible only to local requests, by default.
|
|
|
|
You can change this with `--host`, eg `--host 0.0.0.0` to listen on all addresses.
|
2018-02-16 22:09:07 +03:00
|
|
|
Note there is no other access control, and hledger-api allows file browsing,
|
|
|
|
so on shared machines you will certainly need to put it behind an authenticating proxy to restrict access.
|
|
|
|
|
|
|
|
You can change the TCP port it listens on (default: 8001) with `-p PORT`.
|
|
|
|
|
|
|
|
API methods look like:
|
|
|
|
```
|
|
|
|
/api/v1/accountnames
|
|
|
|
/api/v1/transactions
|
|
|
|
/api/v1/prices
|
|
|
|
/api/v1/commodities
|
|
|
|
/api/v1/accounts
|
|
|
|
/api/v1/accounts/ACCTNAME
|
|
|
|
```
|
|
|
|
See `/api/swagger.json` for a full list in Swagger 2.0 format.
|
|
|
|
(Or you can run `hledger-api --swagger` to print this in the console.)
|
|
|
|
|
|
|
|
hledger-api also serves files, from the current directory by default,
|
|
|
|
and the `/` path will also show a directory listing.
|
|
|
|
This is convenient for serving client-side web code, in addition to the server-side api.
|
2016-04-19 03:07:11 +03:00
|
|
|
|
2016-04-19 03:01:16 +03:00
|
|
|
# OPTIONS
|
2015-12-03 19:53:29 +03:00
|
|
|
|
2016-04-19 03:01:16 +03:00
|
|
|
Note: if invoking hledger-api as a hledger subcommand, write `--` before options as shown above.
|
2015-12-03 19:53:29 +03:00
|
|
|
|
2017-03-30 00:20:30 +03:00
|
|
|
`-f --file=FILE`
|
|
|
|
: use a different input file. For stdin, use - (default: `$LEDGER_FILE` or `$HOME/.hledger.journal`)
|
|
|
|
|
2016-04-19 03:01:16 +03:00
|
|
|
`-d --static-dir=DIR`
|
|
|
|
: serve files from a different directory (default: `.`)
|
2015-12-03 19:53:29 +03:00
|
|
|
|
2017-03-30 00:20:30 +03:00
|
|
|
`--host=IPADDR`
|
|
|
|
: listen on this IP address (default: 127.0.0.1)
|
|
|
|
|
2016-04-19 03:01:16 +03:00
|
|
|
`-p --port=PORT`
|
2017-03-30 00:20:30 +03:00
|
|
|
: listen on this TCP port (default: 8001)
|
2015-12-03 19:53:29 +03:00
|
|
|
|
2016-04-19 03:07:11 +03:00
|
|
|
`--swagger`
|
|
|
|
: print API docs in Swagger 2.0 format, and exit
|
|
|
|
|
2017-03-30 00:20:30 +03:00
|
|
|
`--version`
|
|
|
|
: show version
|
|
|
|
|
2017-07-07 04:00:46 +03:00
|
|
|
`-h --help`
|
2017-03-30 00:20:30 +03:00
|
|
|
: show usage
|
|
|
|
|
2015-12-03 19:53:29 +03:00
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
_man_({{
|
2016-02-21 13:32:40 +03:00
|
|
|
|
2015-12-03 19:53:29 +03:00
|
|
|
# ENVIRONMENT
|
|
|
|
|
2016-06-10 04:07:08 +03:00
|
|
|
_LEDGER_FILE_
|
2015-12-03 19:53:29 +03:00
|
|
|
|
|
|
|
# FILES
|
|
|
|
|
2016-06-10 04:07:08 +03:00
|
|
|
Reads _files_
|
2015-12-03 19:53:29 +03:00
|
|
|
|
|
|
|
# BUGS
|
|
|
|
|
|
|
|
The need to precede options with `--` when invoked from hledger is awkward.
|
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
}})
|