(environment: Environment, options: Options)
| 581 | } |
| 582 | |
| 583 | export async function createApp(environment: Environment, options: Options) { |
| 584 | const effectiveOptions = stripExamplesFromOptions(options) |
| 585 | |
| 586 | environment.startRun() |
| 587 | await writeFiles(environment, effectiveOptions) |
| 588 | await seedEnvValues(environment, effectiveOptions) |
| 589 | await writeEnvExample(environment, effectiveOptions) |
| 590 | await runCommandsAndInstallDependencies(environment, effectiveOptions) |
| 591 | environment.finishRun() |
| 592 | |
| 593 | report(environment, effectiveOptions) |
| 594 | } |
nothing calls this directly
no test coverage detected