Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: start-database.sh is marked optional #1817

Merged
merged 8 commits into from
Apr 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: start-database.sh is marked optional
  • Loading branch information
tekno-on-git committed Apr 7, 2024
commit 7198b1642a948c6ee90118e694cd43e6f280ff28
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";

tekno-on-git marked this conversation as resolved.
Show resolved Hide resolved
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")})`);
tekno-on-git marked this conversation as resolved.
Show resolved Hide resolved
}

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