vault-cortex 0.10.6 → 0.10.7

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.
Files changed (2) hide show
  1. package/dist/env.js +15 -9
  2. package/package.json +1 -1
package/dist/env.js CHANGED
@@ -109,13 +109,16 @@ PORT=8000
109
109
  # Log verbosity: debug | info | warn | error (default: info).
110
110
  LOG_LEVEL=info
111
111
 
112
- # Directory for persistent log files inside the container.
113
- # Unset by default logs go to stdout only. Set a path to also write
114
- # date-stamped log files there (the /data volume persists them).
115
- # LOG_DIR=/data/logs
112
+ # Directory for persistent log files inside the container (default: none).
113
+ # The container's own log (what \`docker logs\` shows) is always written, but
114
+ # Docker discards it whenever the container is recreated — on image updates
115
+ # or compose changes. Set a path (e.g. /data/logs) to also write date-stamped
116
+ # log files there; the /data volume keeps them.
117
+ LOG_DIR=none
116
118
 
117
- # Days to retain persistent log files before cleanup (default: 30).
118
- LOG_RETENTION_DAYS=30
119
+ # Days to keep log files before cleanup on startup (default: 90). Only
120
+ # applies once LOG_DIR is a path.
121
+ # LOG_RETENTION_DAYS=90
119
122
 
120
123
  # Windows users: set this to true. Makes a vault stored on a C: drive work
121
124
  # through Docker Desktop (switches the file watcher to polling and note moves
@@ -234,11 +237,14 @@ PORT=8000
234
237
  LOG_LEVEL=info
235
238
 
236
239
  # Directory for persistent log files inside the container (default: /data/logs).
237
- # Set to empty to disable file logging (logs still go to stdout either way).
240
+ # The container's own log (what \`docker logs\` shows) is always written, but
241
+ # Docker discards it whenever the container is recreated — on image updates
242
+ # or compose changes. Log files under LOG_DIR live on the data volume and
243
+ # survive. Set to "none" to keep only the container log.
238
244
  LOG_DIR=/data/logs
239
245
 
240
- # Days to retain persistent log files before cleanup (default: 30).
241
- LOG_RETENTION_DAYS=30
246
+ # Days to retain persistent log files before cleanup (default: 90).
247
+ LOG_RETENTION_DAYS=90
242
248
 
243
249
  # User/group IDs for obsidian-sync (default: 1000).
244
250
  PUID=1000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vault-cortex",
3
- "version": "0.10.6",
3
+ "version": "0.10.7",
4
4
  "description": "Set up a Vault Cortex MCP server for your Obsidian vault in one command: npx vault-cortex@latest init",
5
5
  "license": "MIT",
6
6
  "type": "module",