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.
- package/dist/env.js +15 -9
- 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
|
-
#
|
|
114
|
-
#
|
|
115
|
-
#
|
|
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
|
|
118
|
-
|
|
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
|
-
#
|
|
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:
|
|
241
|
-
LOG_RETENTION_DAYS=
|
|
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
|