* Bootstraps the application by verifying the integrity and then igniting the kernel.
()
| 21 | * Bootstraps the application by verifying the integrity and then igniting the kernel. |
| 22 | */ |
| 23 | public async bootstrap(): Promise<void> { |
| 24 | await this._verifyIntegrity(); |
| 25 | await this._igniteKernel(); |
| 26 | } |
| 27 | |
| 28 | private async _verifyIntegrity(): Promise<void> { |
| 29 | if (!existsSync(config.paths.home)) { |
no test coverage detected