summaryrefslogtreecommitdiff
path: root/kanboard
blob: 3d8140af2be4da769a3810e97fa7df8ab61e9c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env php
<?php

use Symfony\Component\EventDispatcher\Event;

try {
    require __DIR__.'/app/common.php';
    $container['dispatcher']->dispatch('app.bootstrap', new Event);
    $container['cli']->run();
} catch (Exception $e) {
    echo $e->getMessage().PHP_EOL;
    exit(255);
}