#!/usr/bin/env php
<?php

define('FCPATH', __DIR__ . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR);
require __DIR__ . '/vendor/autoload.php';
require __DIR__ . '/vendor/codeigniter4/framework/system/Boot.php';
require __DIR__ . '/app/Config/Paths.php';

exit(CodeIgniter\Boot::bootSpark(new Config\Paths()));
