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 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
- - `ADMIN_AUTH_KEY` env var to set a password
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mktcms",
3
3
  "configKey": "mktcms",
4
- "version": "0.1.7",
4
+ "version": "0.1.8",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mktcms",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Simple CMS module for Nuxt",
5
5
  "repository": "mktcode/mktcms",
6
6
  "license": "MIT",