#!/usr/bin/env php
<?php
use Electro\Profiles\ConsoleProfile;

/*
 * We do not use __DIR__ here as it will fail if this script is symlinked.
 * We assume the command is always run from the application's root directory.
 */
require getcwd () . "/private/src/Bootloader.php";

exit (App\Bootloader::make ()->boot (new ConsoleProfile));
