mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-05-31 00:04:27 +08:00
* fix(build): rm key:generate in check-env target The docker container is guaranteed to not be running at this point. keygen happens last in the process. * qa: switch from pint to php-cs-fixer * ci: use make in run-checks action * ci: run checks directly on the gh runner instance * ci: use shivammathur/setup-php@v2 * style: run make fix * ci: add unit tests to run-checks action
17 lines
474 B
PHP
17 lines
474 B
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
// Determine if the application is in maintenance mode...
|
|
if (file_exists($maintenance = __DIR__ . '/../storage/framework/maintenance.php')) {
|
|
require $maintenance;
|
|
}
|
|
|
|
// Register the Composer autoloader...
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// Bootstrap Laravel and handle the request...
|
|
(require_once __DIR__ . '/../bootstrap/app.php')
|
|
->handleRequest(Request::capture());
|