create-macostack 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/create-macostack.ts +1 -1
- package/package.json +1 -1
package/bin/create-macostack.ts
CHANGED
|
@@ -577,7 +577,7 @@ const server = ready.find((p) => p.id === "server");
|
|
|
577
577
|
const client = ready.find((p) => p.id === "client");
|
|
578
578
|
if (server) {
|
|
579
579
|
steps.push(
|
|
580
|
-
`Start the backend:\n cd ${displayRoot}/server\n docker compose up -d && bun run db:migrate && bun dev`,
|
|
580
|
+
`Start the backend:\n cd ${displayRoot}/server\n docker compose up -d && bun run db:generate && bun run db:migrate && bun dev`,
|
|
581
581
|
);
|
|
582
582
|
}
|
|
583
583
|
if (client) {
|