cd /var/www/ or cd yourlocalhostfolder
$ git clone https://github.com/fmunoz92/mili-boilerplate.git
Configure db:
create an empty database: for example "mili"
rename app/config/example.config.php to app/config/config.php and edit with the correct values
$config->set('dbname', 'mili');
$config->set('dbuser', 'root');
$config->set('dbpass', 'pass');
then run
$ composer install
$ composer dump-autoload
finally run your browser in http://localhost/mili-boilerplate
if you have Smarty errors set the permissions on app/views.
if you create some models run
$ composer dump-autoload
$ php vendor/bin/doctrine orm:schema-tool:update --force