mirror of
https://github.com/getformwork/formwork.git
synced 2025-01-17 13:38:22 +01:00
15 lines
343 B
PHP
15 lines
343 B
PHP
<?php
|
|
|
|
use Formwork\Core\Formwork;
|
|
|
|
const DS = DIRECTORY_SEPARATOR;
|
|
const ROOT_PATH = __DIR__ . DS;
|
|
const FORMWORK_PATH = ROOT_PATH . 'formwork' . DS;
|
|
const CONFIG_PATH = ROOT_PATH . 'config' . DS;
|
|
const ADMIN_PATH = ROOT_PATH . 'admin' . DS;
|
|
|
|
require ROOT_PATH . 'vendor' . DS . 'autoload.php';
|
|
|
|
$formwork = new Formwork();
|
|
$formwork->run();
|