adpa-enterprise-framework-automation
Version:
Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe
29 lines • 1.74 kB
JavaScript
/**
* DeploymentGuideTemplate generates the content for the Deployment Guide document.
*/
export class DeploymentGuideTemplate {
context;
constructor(context) {
this.context = context;
}
/**
* Build the markdown content for Deployment Guide
*/
generateContent() {
return `# Deployment Guide\n\n` +
`**Project:** ${this.context.projectName}\n\n` +
`## Introduction\nOverview of deployment architecture and deployment strategy.\n\n` +
`## Deployment Architecture\nHigh-level architecture of the deployment environment and infrastructure.\n\n` +
`## Environment Setup\nSetup and configuration of deployment environments.\n\n` +
`## Infrastructure Requirements\nHardware, software, and network requirements for deployment.\n\n` +
`## Deployment Strategies\nDifferent deployment strategies including blue-green, canary, and rolling deployments.\n\n` +
`## Configuration Management\nManagement of configuration files and environment-specific settings.\n\n` +
`## Security Considerations\nSecurity best practices for deployment including access control and data protection.\n\n` +
`## Monitoring and Health Checks\nImplementation of monitoring, health checks, and alerting systems.\n\n` +
`## Backup and Recovery\nBackup strategies and disaster recovery procedures.\n\n` +
`## Scaling Procedures\nProcedures for scaling applications horizontally and vertically.\n\n` +
`## Maintenance and Updates\nProcedures for performing maintenance and applying updates.\n\n` +
`{{AI_INSIGHTS}}\n`;
}
}
//# sourceMappingURL=DeploymentGuideTemplate.js.map