@tomorrowos/sdk 0.9.29 → 0.9.31
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/README.md +5 -4
- package/VERCEL_SETUP.md +266 -208
- package/dist/tomorrowos.d.ts +13 -1
- package/dist/tomorrowos.d.ts.map +1 -1
- package/dist/tomorrowos.js +45 -9
- package/package.json +1 -1
- package/templates/cms-starter/package.json +2 -2
- package/templates/cms-starter-v0/README.md +10 -35
- package/templates/cms-starter-v0/api/index.ts +10 -0
- package/templates/cms-starter-v0/app/[[...slug]]/route.ts +89 -0
- package/templates/cms-starter-v0/app/layout.tsx +15 -0
- package/templates/cms-starter-v0/cms-app.ts +75 -0
- package/templates/cms-starter-v0/next-env.d.ts +4 -0
- package/templates/cms-starter-v0/next.config.mjs +15 -0
- package/templates/cms-starter-v0/package.json +11 -11
- package/templates/cms-starter-v0/server.ts +3 -72
- package/templates/cms-starter-v0/tsconfig.json +2 -1
- package/templates/cms-starter-v0/vercel.json +11 -1
- package/templates/cms-starter-v0/preview/app/layout.tsx +0 -11
- package/templates/cms-starter-v0/preview/app/page.tsx +0 -3
- package/templates/cms-starter-v0/preview/next-env.d.ts +0 -2
- package/templates/cms-starter-v0/preview/next.config.mjs +0 -18
- package/templates/cms-starter-v0/preview/tsconfig.json +0 -20
package/README.md
CHANGED
|
@@ -74,12 +74,13 @@ In Vercel Agent (or any AI setup prompt), paste:
|
|
|
74
74
|
```text
|
|
75
75
|
Follow @tomorrowos/sdk VERCEL_SETUP.md and set up my TomorrowOS CMS.
|
|
76
76
|
IF any step contradicts Vercel, adapt to settings that Vercel can accept.
|
|
77
|
+
After each question, configure that step immediately before asking the next.
|
|
77
78
|
```
|
|
78
79
|
|
|
79
|
-
That wizard asks: database (**Supabase** → **Neon** → SQLite demo), media (**Cloudinary** → **Vercel Blob** → local),
|
|
80
|
-
branding (manual
|
|
81
|
-
**
|
|
82
|
-
|
|
80
|
+
That wizard asks: database (**Supabase** → **Neon** → SQLite demo), media (**Cloudinary recommended** → **Vercel Blob** → local),
|
|
81
|
+
branding (manual name/colours/background/logo **or** **website URL → full `brand.json`**, no login unless asked).
|
|
82
|
+
**Configure immediately after each answer** (e.g. Cloudinary Env popup right after choosing Cloudinary).
|
|
83
|
+
**Publish stays a Fluid Vercel Function** (`api/index.ts` + `export default server`, WebSockets per Vercel docs).
|
|
83
84
|
|
|
84
85
|
### Replit upgrade (existing CMS)
|
|
85
86
|
|