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.
@@ -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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-macostack",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Private macostack scaffold orchestrator for detached server/client repos.",
5
5
  "type": "module",
6
6
  "bin": {