lxHive is a fast and lightweight open source xAPI conformant Learning Record Store (LRS). lxHive logs and returns activity statements as defined in the Experience API specification (formerly TinCan API) currently at xAPI Version 1.0.3.
The Experience API (also referred to as 'xAPI') is a learning software specification that allows online learning content and systems to interact allowing recording and tracking of all types of learning experiences. It is designed to replace the legacy SCORM Standard and is steered by the US Dept. of Defense ADL (Advanced Distributed Learning). It allows for the efficient aggregation and analysis of learning data as well as allowing learning designers a flexible and intelligent way to design better learning experiences. The Experience API is able to accept learning experiences from any device and/or medium (mobile, tablet, desktop), both in an offline as well as online mode.
The results of learning experiences are stored in a Learning Record Store (LRS). The LRS is defined as part of the Experience API Specification and controls at its core the following functions:
- authentication of authorised users
- validation of compliance to the xAPI Standard
- the storage of learning related data
- retrieval of learning related data
The application uses MongoDB and PHP and should be easy to install on any web server. It supports Basic Authentication, OAuth 2.0 (Authorization Code Grant) and supports pluggable file storage mechanisms.
- GNU GPL v3
- PHP >= 5.4,
- (optional) PHPUnit to run tests.
- .htaccess enabled (or similar HTTP rewrite function)
- Composer installed
- Mongo DB installed (supports Mongo 3.x)
- OpenSSL
- Make sure you have set the
date.timezone
setting in your php.ini
- Install dependencies via
composer install
. - Point your server's
DocumentRoot
directive to thepublic
folder - Set up your database & client account:
# Browse to application root
$ cd /<path_to_application_root>
# View available commands
$ ./X
# Set up database
$ ./X setup:db
# Set up OAuth scopes
$ ./X setup:oauth
# Create a new user
$ ./X user:create
- As an administrator you should first create a new user and authentication token for yourself and assign the super role to it.
See the Wiki and the docs
directory for more detailed documentation.
The Brightcookie team
- Jakob Murko - systems architect, lead developer
- Leo Gaggl - creator, mentor, specs
- Kien Vu - legacy support, application development
- Matthew Smith - initial alpha prototype development & spec
- Joerg Boeselt - tests, specs, pm