vela 0.11.5 → 0.12.0

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 CHANGED
@@ -20,6 +20,16 @@ That's a running app with a database behind it. No separate PocketBase install,
20
20
  - **Describe it instead.** Pass `--ai "a blog post with tags and a cover image"` and review the collection it designs before anything is written.
21
21
  - **shadcn-svelte components** on tap, and fixtures and seeds for realistic data while you work.
22
22
  - **Themed templates.** `vela create --template broadsheet` pulls a finished blog design from the template registry; `--template` lists what is available, grouped by category.
23
+ - **Linked from the start.** Logged in to velastack.dev, `vela create` links the new project there (`.vela/project.json`), so `vela deploy` reports to it and a CMS-ready template such as `hearth` reads from the project's free hosted CMS right away. `vela login` first if you are not; `vela link` does the same for a project you already have.
24
+
25
+ ```sh
26
+ vela create my-site --template hearth # linked, CMS endpoint written into src/lib/site.ts
27
+ vela create my-site --template hearth --link none # keep it local; fill in `cmsEndpoint` later
28
+ vela create my-site --template hearth --cms https://cms.example/v1/projects/<id>/cms
29
+ CI=1 VELA_API_KEY=… vela create my-site --template hearth --link new --no-install
30
+ ```
31
+
32
+ Off a terminal nothing is created on velastack.dev unless `--link new` or `--link <project-id>` says so (`--team <id>` picks the team for a new one; the personal team is the default).
23
33
 
24
34
  ## The shape of a day
25
35