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

25 lines (24 loc) 945 B
/** * Python Hot-Reload Configuration for All Framework Templates * Provides auto-restart functionality with uvicorn, gunicorn, and development servers */ export interface PythonHotReloadConfig { framework: string; serverType: 'uvicorn' | 'gunicorn' | 'django' | 'flask' | 'tornado' | 'sanic'; watchPaths: string[]; excludePatterns: string[]; reloadDelay: number; dependencies: Record<string, string>; scripts: Record<string, string>; environmentFiles: Record<string, string>; } export declare class PythonHotReloadGenerator { generateHotReloadConfig(framework: string): PythonHotReloadConfig; generateWatcherScript(): string; generateDockerDevConfig(framework: string): string; private getDockerCommand; generateVSCodeConfig(): string; generateMakefileTargets(): string; generatePyprojectConfig(): string; } export declare const pythonHotReloadGenerator: PythonHotReloadGenerator;