summaryrefslogtreecommitdiff
path: root/index.php
blob: 4dae312baa6206565aeeeed73e2a007b992ded21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

use Kanboard\Core\Controller\Runner;

try {
    require __DIR__.'/app/common.php';
    $container['router']->dispatch();
    $runner = new Runner($container);
    $runner->execute();
} catch (Exception $e) {
    echo 'Internal Error: '.$e->getMessage();
}