@marvs13/marvinel-nextjs-supabase-starting-kit 1.0.6 ā 1.0.7
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/cli.js +6 -0
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -88,6 +88,12 @@ try {
|
|
|
88
88
|
copyFolderSync(templatePath, path.join(projectPath, "src"));
|
|
89
89
|
|
|
90
90
|
console.log(`\nā
Setup complete! Project is ready.`);
|
|
91
|
+
console.log(
|
|
92
|
+
`\nš TODO : Don't forget to setup your Supabase key in env.local`,
|
|
93
|
+
);
|
|
94
|
+
console.log(
|
|
95
|
+
`\nNext steps:\ncd ${projectName}\n${packageManager === "bun" ? "bun dev" : "npm run dev"}`,
|
|
96
|
+
);
|
|
91
97
|
} catch (error) {
|
|
92
98
|
console.error("ā Installation failed:", error);
|
|
93
99
|
process.exit(1);
|