mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import { log } from "@clack/prompts";
|
|
import pc from "picocolors";
|
|
|
|
export function displayPostInstallInstructions(
|
|
hasAuth: boolean,
|
|
database: string,
|
|
projectName: string,
|
|
packageManager: string,
|
|
depsInstalled: boolean,
|
|
orm?: string,
|
|
) {
|
|
log.info(`${pc.cyan("Installation completed!")} Here are some next steps:
|
|
|
|
${
|
|
hasAuth && database !== "none"
|
|
? `${pc.yellow("Authentication Setup:")}
|
|
${pc.cyan("1.")} Generate auth schema: ${pc.green(`cd ${projectName} && ${packageManager} run auth:generate`)}
|
|
${
|
|
orm === "prisma"
|
|
? `${pc.cyan("2.")} Generate Prisma client: ${pc.green(`${packageManager} run prisma:generate`)}
|
|
${pc.cyan("3.")} Push schema to database: ${pc.green(`${packageManager} run prisma:push`)}`
|
|
: `${pc.cyan("2.")} Apply migrations to your database: ${pc.green(`${packageManager} run drizzle:migrate`)}`
|
|
}
|
|
|
|
`
|
|
: ""
|
|
}${
|
|
database === "postgres"
|
|
? `${pc.yellow("PostgreSQL Configuration:")}
|
|
Make sure to update ${pc.cyan("packages/server/.env")} with your PostgreSQL connection string.
|
|
|
|
`
|
|
: database === "sqlite"
|
|
? `${pc.yellow("Database Configuration:")}
|
|
${pc.cyan("packages/server/.env")} contains your SQLite/Turso connection details. Update if needed.
|
|
|
|
`
|
|
: ""
|
|
}${pc.yellow("Environment Variables:")}
|
|
Check ${pc.cyan(".env")} files in both client and server packages and update as needed.
|
|
|
|
${pc.yellow("Start Development:")}
|
|
${pc.cyan("cd")} ${projectName}${
|
|
!depsInstalled
|
|
? `
|
|
${pc.cyan(packageManager)} install`
|
|
: ""
|
|
}
|
|
${pc.cyan(packageManager === "npm" ? "npm run" : packageManager)} dev`);
|
|
}
|