Table of Contents

Prerequisites

Required

Recommended

Download sources

SQL-Ledger

Github

Download from Github (all versions from 2.6.0 onward)

sql-ledger.com

Download from sql-ledger.com

Community Version (based on Ledger123) Download from Github

Installation Instructions

Instructions for SQL-Ledger can be found here

Instructions for Ledger123 can be found here

Other documents regarding the Enhanced Version:

Existing installation

To connect an existing installation with a repository on Github, update it manually to the most recent version, move to the sql-ledger directory, then type:

  git init
  

For the original SQL-Ledger, enter

  git remote add origin git://github.com/Tekki/sql-ledger.git
  

or for the Community Version:

  git remote add origin git://github.com/sl-community/sql-ledger-beta.git
  

Then:

  git fetch
  git branch --set-upstream master origin/master 
  

Now your installation is connected to the repository and you can update it with:

  git pull