@we8/cms 0.1.0 → 0.1.1
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 +9 -6
- package/package.json +2 -8
package/README.md
CHANGED
|
@@ -67,12 +67,15 @@ no bundle behind the binding.
|
|
|
67
67
|
`DB` (D1) and `MEDIA` (R2), plus the vars `SITE_URL` and `CMS_VERSION` and the
|
|
68
68
|
secret `BETTER_AUTH_SECRET`. `AUTH_URL`, `TURNSTILE_SECRET`, `EMAIL_MODE`, and
|
|
69
69
|
`EMAIL_FROM` are optional, and `ASSETS` is the optional static-asset binding
|
|
70
|
-
that carries the admin portal.
|
|
71
|
-
each one does and for the architecture behind them.
|
|
70
|
+
that carries the admin portal.
|
|
72
71
|
|
|
73
72
|
## More
|
|
74
73
|
|
|
75
|
-
- [
|
|
76
|
-
a working site
|
|
77
|
-
|
|
78
|
-
- `GET /v1/openapi.json` on any install: the
|
|
74
|
+
- [`create-we8`](https://www.npmjs.com/package/create-we8): the fastest path
|
|
75
|
+
from nothing to a working site; the README it writes into your project
|
|
76
|
+
carries every step.
|
|
77
|
+
- `GET /v1/openapi.json` on any install: the full `/v1` contract, live,
|
|
78
|
+
keyless, and always in sync with the code serving it.
|
|
79
|
+
- [`@we8/client`](https://www.npmjs.com/package/@we8/client) and
|
|
80
|
+
[`@we8/astro`](https://www.npmjs.com/package/@we8/astro): the typed ways to
|
|
81
|
+
consume it.
|
package/package.json
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@we8/cms",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/reveriext/we8-package.git",
|
|
8
|
-
"directory": "packages/cms"
|
|
9
|
-
},
|
|
10
|
-
"homepage": "https://github.com/reveriext/we8-package/tree/main/packages/cms#readme",
|
|
11
|
-
"bugs": "https://github.com/reveriext/we8-package/issues",
|
|
5
|
+
"homepage": "https://we8.io",
|
|
12
6
|
"type": "module",
|
|
13
7
|
"description": "The core we8 headless CMS: content, forms, analytics, media, and SEO modules behind a single-site /v1 API with embedded auth.",
|
|
14
8
|
"keywords": [
|