Skip to content
Bruno P. Kinoshita edited this page Apr 6, 2016 · 5 revisions

SLBR is built with Laravel in PHP. In order to build it you will have to first fork and clone our repository. You will also need the following tools installed:

  • PHP 5.4+
  • MCrypt extension installed
  • Composer for dependency management

The first thing you'll need is run composer install to download the dependencies and touch the file app/database/production.sqlite. This latter command will create an empty file that will be used as database during development. Finally you can populate the database.

php artisan migrate

You can also include some sample data.

php artisan db:seed

And finally start the application.

php artisan serve

Voilà, enter http://localhost:8000 in your browser and start hacking SLBR.

Clone this wiki locally