v1.0.0 - 2017/10/03 - Initial Release
Pre-release
Pre-release
Features:
- Create accounts and transactions
- Update accounts and transactions with JSON data
- Search accounts and transactions
- Search by
fields
,terms
andranges
- Search with
must
andshould
blocks
- Search by
- Ping service
- Token based authentication
Improvements:
[NIL]
Bug Fixes:
[NIL]
Deployment Guide:
-
Set the following environmental variables:
- Port in which the Ledger server should run
export PORT=7000
- Database URL of the Ledger
export DATABASE_URL="postgres://USERNAME:PASSWORD@HOST:PORT/DB_NAME"
- Set the path of migration files
export MIGRATION_FILES_PATH="file:///go/src/github.com/RealImage/QLedger/migrations/postgres"
- Set the host prefix, if path based routing is needed for sharing the load balancer
export HOST_PREFIX="/qledger/"
- Set the auth token to a random string, if authentication needs to be enabled in Ledger
export LEDGER_AUTH_TOKEN=
- Port in which the Ledger server should run
-
Build and run the docker using Dockerfile.