Skip to content

v1.0.0 - 2017/10/03 - Initial Release

Pre-release
Pre-release
Compare
Choose a tag to compare
@ilayaraja89-zz ilayaraja89-zz released this 03 Oct 07:35
· 10 commits to master since this release

Features:

  • Create accounts and transactions
  • Update accounts and transactions with JSON data
  • Search accounts and transactions
    • Search by fields, terms and ranges
    • Search with must and should blocks
  • 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=
  • Build and run the docker using Dockerfile.