lthn.io/bootstrap/app.php
Claude 77cc45dd83
feat: lthn.io CorePHP app — TLD website + blockchain services
Modules:
- Chain: daemon RPC client (DaemonRpc singleton, cached queries)
- Explorer: block browser, tx viewer, alias directory, search, stats API
- Names: .lthn TLD registrar portal (availability check, lookup, directory)
- Trade: scaffold (DEX frontend + API)
- Pool: scaffold (mining pool dashboard)

Replaces 5 Node.js containers (5.9GB) with one FrankenPHP app.
Built on CorePHP framework pattern from host.uk.com.

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 16:13:55 +01:00

18 lines
475 B
PHP

<?php
declare(strict_types=1);
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| Bridge for Laravel Octane / FrankenPHP worker mode.
| Octane expects bootstrap/app.php to return the Application instance.
| Our app bootstraps via App\Boot::app() (core-php pattern).
|
*/
require __DIR__.'/../vendor/autoload.php';
return App\Boot::app();