Rename database environment variables for consistency

This commit is contained in:
Aman Varshney
2025-04-09 08:42:23 +05:30
parent 33a43fcf14
commit 7504d2734f
10 changed files with 23 additions and 26 deletions

View File

@@ -12,7 +12,7 @@ export function generateReproducibleCommand(config: ProjectConfig): string {
flags.push(`--orm ${config.orm}`);
}
if (config.dbSetup && config.dbSetup !== "none") {
if (config.dbSetup) {
flags.push(`--db-setup ${config.dbSetup}`);
}
}