9 lines
214 B
PHP
9 lines
214 B
PHP
<?php
|
|
|
|
$root = realpath(implode(DIRECTORY_SEPARATOR, [__DIR__, "..", "..", ".."]));
|
|
|
|
include implode(DIRECTORY_SEPARATOR, [$root, "vendor", "autoload.php"]);
|
|
|
|
use \Lewp\Site;
|
|
|
|
new Site("localhost", "home", $root);
|