mirror of
https://github.com/getformwork/formwork.git
synced 2025-01-17 13:38:22 +01:00
11 lines
164 B
PHP
11 lines
164 B
PHP
<?php
|
|
|
|
use Formwork\Cms\App;
|
|
|
|
const ROOT_PATH = __DIR__;
|
|
const SYSTEM_PATH = ROOT_PATH . '/formwork';
|
|
|
|
require SYSTEM_PATH . '/bootstrap.php';
|
|
|
|
(new App())->run();
|