create-whop-kit 0.9.4 → 0.9.6
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/cli-create.js +6 -6
- package/package.json +1 -1
package/dist/cli-create.js
CHANGED
|
@@ -522,9 +522,9 @@ var init_default = defineCommand({
|
|
|
522
522
|
const result = await p5.select({
|
|
523
523
|
message: "Which database?",
|
|
524
524
|
options: [
|
|
525
|
-
{ value: "neon", label: "Neon", hint: "Serverless Postgres \u2014 auto-provisioned
|
|
526
|
-
{ value: "
|
|
527
|
-
{ value: "
|
|
525
|
+
{ value: "neon", label: "Neon (recommended)", hint: "Serverless Postgres \u2014 auto-provisioned via CLI" },
|
|
526
|
+
{ value: "supabase", label: "Supabase", hint: "Postgres + Auth + Storage \u2014 auto-provisioned via CLI" },
|
|
527
|
+
{ value: "prisma-postgres", label: "Prisma Postgres", hint: "Instant database \u2014 no account needed, auto-provisioned" },
|
|
528
528
|
{ value: "manual", label: "I have a connection string", hint: "Paste an existing PostgreSQL URL" },
|
|
529
529
|
{ value: "later", label: "Configure later", hint: "Skip database setup for now" }
|
|
530
530
|
]
|
|
@@ -671,13 +671,13 @@ var init_default = defineCommand({
|
|
|
671
671
|
options: [
|
|
672
672
|
{
|
|
673
673
|
value: "deploy",
|
|
674
|
-
label: "
|
|
675
|
-
hint: "Private repo, auto-deploy on
|
|
674
|
+
label: "Push to GitHub and deploy to Vercel (recommended)",
|
|
675
|
+
hint: "Private repo, auto-deploy on every git push"
|
|
676
676
|
},
|
|
677
677
|
{
|
|
678
678
|
value: "local",
|
|
679
679
|
label: "Develop locally first",
|
|
680
|
-
hint: "
|
|
680
|
+
hint: "Start on localhost:3000, deploy later with whop-kit deploy"
|
|
681
681
|
}
|
|
682
682
|
]
|
|
683
683
|
});
|