@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
33 lines (32 loc) • 1.59 kB
TypeScript
/**
* Zig Backend Template Base Generator
* Shared functionality for all Zig web frameworks
*/
import { BackendTemplateGenerator } from '../shared/backend-template-generator';
export declare abstract class ZigBackendGenerator extends BackendTemplateGenerator {
constructor(framework: string);
protected generateLanguageFiles(projectPath: string, options: any): Promise<void>;
private generateBuildZig;
private generateBuildZon;
private generateZigGitignore;
private generateVSCodeSettings;
protected generateCommonFiles(projectPath: string, options: any): Promise<void>;
private generateMakefile;
private generateDevContainer;
protected generateTestStructure(projectPath: string, options: any): Promise<void>;
protected generateHealthCheck(projectPath: string): Promise<void>;
protected generateAPIDocs(projectPath: string): Promise<void>;
protected generateDockerFiles(projectPath: string, options: any): Promise<void>;
protected generateDocumentation(projectPath: string, options: any): Promise<void>;
protected getLanguageSpecificIgnorePatterns(): string[];
protected getLanguagePrerequisites(): string;
protected getInstallCommand(): string;
protected getDevCommand(): string;
protected getProdCommand(): string;
protected getTestCommand(): string;
protected getCoverageCommand(): string;
protected getLintCommand(): string;
protected getBuildCommand(): string;
protected getSetupAction(): string;
protected generateBuildScript(projectPath: string, options: any): Promise<void>;
}