(environment: Environment, options: Options)
| 466 | } |
| 467 | |
| 468 | export async function createApp(environment: Environment, options: Options) { |
| 469 | const effectiveOptions = stripExamplesFromOptions(options) |
| 470 | |
| 471 | environment.startRun() |
| 472 | await writeFiles(environment, effectiveOptions) |
| 473 | await seedEnvValues(environment, effectiveOptions) |
| 474 | await writeEnvExample(environment, effectiveOptions) |
| 475 | await runCommandsAndInstallDependencies(environment, effectiveOptions) |
| 476 | environment.finishRun() |
| 477 | |
| 478 | report(environment, effectiveOptions) |
| 479 | } |
nothing calls this directly
no test coverage detected