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

$basePath = dirname(__FILE__);
$frameworkPath = $basePath . '/../lib/prado/framework/prado.php';
$applicationPath = $basePath . '/../app/php/';

require_once($frameworkPath);

$application = new TApplication($applicationPath);
$application->run();

?>