add express, automated mongodb atlas setup, fix stack architech

This commit is contained in:
Aman Varshney
2025-04-07 21:32:22 +05:30
parent c6c73fce76
commit 2cf01d155b
38 changed files with 902 additions and 393 deletions

View File

@@ -2,6 +2,7 @@ import { note } from "@clack/prompts";
import pc from "picocolors";
import type {
ProjectAddons,
ProjectDBSetup,
ProjectDatabase,
ProjectFrontend,
ProjectOrm,
@@ -18,6 +19,7 @@ export function displayPostInstallInstructions(
addons: ProjectAddons[],
runtime: ProjectRuntime,
frontends: ProjectFrontend[],
dbSetup?: ProjectDBSetup,
) {
const runCmd = packageManager === "npm" ? "npm run" : packageManager;
const cdCmd = `cd ${projectName}`;