create-rotor 0.3.7 → 0.3.8
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
CHANGED
|
@@ -1182,12 +1182,11 @@ var MODULES = {
|
|
|
1182
1182
|
},
|
|
1183
1183
|
drizzle: {
|
|
1184
1184
|
name: "drizzle",
|
|
1185
|
-
label: "Drizzle
|
|
1185
|
+
label: "Drizzle",
|
|
1186
1186
|
hint: "Database",
|
|
1187
1187
|
files: ["lib/db.ts", "lib/schema.ts", "drizzle.config.ts"],
|
|
1188
1188
|
dependencies: {
|
|
1189
1189
|
"drizzle-orm": "0.45.1",
|
|
1190
|
-
"@supabase/supabase-js": "2.99.1",
|
|
1191
1190
|
postgres: "3.4.8"
|
|
1192
1191
|
},
|
|
1193
1192
|
devDependencies: {
|
package/package.json
CHANGED
package/template/.env.example
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# [drizzle]
|
|
2
|
-
DATABASE_URL=postgresql://
|
|
3
|
-
SUPABASE_URL=https://your-project.supabase.co
|
|
4
|
-
SUPABASE_ANON_KEY=your-anon-key
|
|
2
|
+
DATABASE_URL=postgresql://postgres.xxxx:password@aws-0-ap-southeast-1.pooler.supabase.com:6543/postgres
|
|
5
3
|
# [/drizzle]
|
|
6
4
|
|
|
7
5
|
# [ai]
|
package/template/CLAUDE.md
CHANGED
|
@@ -36,4 +36,5 @@ Next.js App Router project.
|
|
|
36
36
|
```bash
|
|
37
37
|
claude skill install vercel-labs/next-skills/next-best-practices # Next.js best practices
|
|
38
38
|
claude skill install vercel-labs/agent-skills/react-best-practices # React performance optimization
|
|
39
|
+
claude skill install supabase/agent-skills/postgres-best-practices # Postgres best practices (if using Supabase)
|
|
39
40
|
```
|
package/template/package.json
CHANGED