create-vobase 0.2.0 → 0.2.1
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/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -53,6 +53,8 @@ console.log("Generating routes...");
|
|
|
53
53
|
await $`bun run scripts/generate.ts`.cwd(dest);
|
|
54
54
|
console.log("Setting up database...");
|
|
55
55
|
await $`bun run db:push`.cwd(dest);
|
|
56
|
+
console.log("Seeding admin user...");
|
|
57
|
+
await $`bun run seed`.cwd(dest);
|
|
56
58
|
console.log(`
|
|
57
59
|
Done! Your vobase project is ready.
|
|
58
60
|
|