Skip to content

Instantly share code, notes, and snippets.

View binaryfire's full-sized avatar

Raj Siva-Rajah binaryfire

View GitHub Profile
@binaryfire
binaryfire / Caddyfile
Created August 27, 2025 16:34 — forked from fideloper/Caddyfile
example caddyfile for frankenphp
{
{$CADDY_GLOBAL_OPTIONS}
admin localhost:{$CADDY_SERVER_ADMIN_PORT}
frankenphp {
worker "{$APP_PUBLIC_PATH}/frankenphp-worker.php" {$CADDY_SERVER_WORKER_COUNT}
}
}
@binaryfire
binaryfire / OpportunityBoard.php
Created August 24, 2025 14:33 — forked from ManukMinasyan/OpportunityBoard.php
Flowforge - Custom Fields Integration Example
<?php
declare(strict_types=1);
namespace App\Filament\Clusters\Management\Pages;
use App\Models\Management\Opportunity;
use BackedEnum;
use Exception;
use Filament\Actions\CreateAction;