Skip to content

Commit

Permalink
fix: start-database.sh is marked optional
Browse files Browse the repository at this point in the history
  • Loading branch information
kxzazz committed Apr 7, 2024
1 parent fedd7b3 commit 7198b16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/src/helpers/logNextSteps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import chalk from "chalk";

import { DEFAULT_APP_NAME } from "~/consts.js";
import { type InstallerOptions } from "~/installers/index.js";
import { getUserPkgManager } from "~/utils/getUserPkgManager.js";
Expand Down Expand Up @@ -35,7 +37,7 @@ export const logNextSteps = async ({
}

if (["postgres", "mysql"].includes(databaseProvider)) {
logger.info(" ./start-database.sh");
logger.info(` ./start-database.sh (${chalk.red("Optional")})`);
}

if (packages?.prisma.inUse || packages?.drizzle.inUse) {
Expand Down

0 comments on commit 7198b16

Please sign in to comment.