()
| 493 | process.exit(1); |
| 494 | } |
| 495 | export async function checkEnvFile(): Promise<boolean> { |
| 496 | return checkEnvFileInternal(envFileName); |
| 497 | } |
| 498 | export async function initializeEnvFile(answers: SetupAnswers): Promise<void> { |
| 499 | const envFileToUse = |
| 500 | answers.CI === "true" ? "envFiles/.env.ci" : "envFiles/.env.devcontainer"; |
no outgoing calls
no test coverage detected