mktcms 0.1.7 → 0.1.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/README.md +9 -1
- package/dist/module.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ This module is my personal, minimalist, opinionated, independent alternative to
|
|
|
15
15
|
|
|
16
16
|
- S3 bucket explorer/editor at `/admin`
|
|
17
17
|
- API routes at `/api/admin`
|
|
18
|
-
- `
|
|
18
|
+
- `MKTCMS_ADMIN_AUTH_KEY` env var to set a password
|
|
19
19
|
- `useContent` composable
|
|
20
20
|
|
|
21
21
|
## Setup
|
|
@@ -40,6 +40,14 @@ MKTCMS_MAILER_FROM="your-mailer-from-address"
|
|
|
40
40
|
MKTCMS_MAILER_TO="your-mailer-to-address"
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
Add local development storage folder in `.gitignore`:
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
.storage
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
(S3 is only used if `NODE_ENV=production`.)
|
|
50
|
+
|
|
43
51
|
## Usage
|
|
44
52
|
|
|
45
53
|
Assuming json files in S3 like `your-project:articles:article-1.json`:
|
package/dist/module.json
CHANGED