UNPKG

@re-shell/cli

Version:

Full-stack development platform uniting microservices and microfrontends. Build complete applications with .NET (ASP.NET Core Web API, Minimal API), Java (Spring Boot, Quarkus, Micronaut, Vert.x), Rust (Actix-Web, Warp, Rocket, Axum), Python (FastAPI, Dja

26 lines (25 loc) 677 B
export interface PhpFpmConfig { projectName: string; port?: number; phpVersion?: string; environment?: 'development' | 'production'; maxChildren?: number; startServers?: number; minSpareServers?: number; maxSpareServers?: number; maxRequests?: number; slowlogTimeout?: number; requestTimeout?: number; } export declare class PhpFpmGenerator { generateFpmConfig(config: PhpFpmConfig): { path: string; content: string; }[]; generateXdebugConfig(): string; generateHealthCheck(): string; } export declare function generatePhpFpmConfig(config: PhpFpmConfig): { path: string; content: string; }[];