vault-cortex 0.7.0-beta.38 → 0.7.0-beta.39

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 CHANGED
@@ -204,10 +204,6 @@ MCP_AUTH_TOKEN=${answers.mcpAuthToken}
204
204
  # Absolute path to your Obsidian vault on this machine.
205
205
  VAULT_PATH=${answers.vaultPath}
206
206
 
207
- # Public URL for OAuth issuer URL in discovery metadata.
208
- # Override if you expose the server on a different URL (e.g. via a reverse proxy).
209
- PUBLIC_URL=http://localhost:8000
210
-
211
207
  ${LOCAL_OPTIONAL_BLOCK}`;
212
208
  export const buildRemoteEnv = (answers) => {
213
209
  const vaultPasswordLines = answers.vaultPassword === undefined
package/dist/messages.js CHANGED
@@ -110,9 +110,10 @@ ${smokeTest(`${baseUrl}/healthz`)}
110
110
 
111
111
  ${sectionRule("Settings")}
112
112
 
113
- Optional settings (timezone, memory folder, port, logging) are commented
114
- out in ${targetDir}/.env — uncomment, set a value, then apply with
115
- "npx vault-cortex restart" (plain docker restart does not re-read .env).
113
+ Optional settings (timezone, memory folder, port, logging) live in
114
+ ${targetDir}/.env — edit a value (uncommenting it first if needed), then
115
+ apply with "npx vault-cortex restart" (plain docker restart does not
116
+ re-read .env).
116
117
 
117
118
  ${updateGuidance(targetDir)}
118
119
 
@@ -172,9 +173,9 @@ ${smokeTest(`${publicUrl}/healthz`)}
172
173
  ${sectionRule("Settings")}
173
174
 
174
175
  Optional settings (timezone, memory folder, port, logging, sync
175
- behavior) are commented out in ${targetDir}/.env — uncomment, set a
176
- value, then apply with "npx vault-cortex restart" (plain docker
177
- restart does not re-read .env).
176
+ behavior) live in ${targetDir}/.env — edit a value (uncommenting it
177
+ first if needed), then apply with "npx vault-cortex restart" (plain
178
+ docker restart does not re-read .env).
178
179
 
179
180
  ${updateGuidance(targetDir)}
180
181
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vault-cortex",
3
- "version": "0.7.0-beta.38",
3
+ "version": "0.7.0-beta.39",
4
4
  "description": "Set up a Vault Cortex MCP server for your Obsidian vault in one command: npx vault-cortex init",
5
5
  "license": "MIT",
6
6
  "type": "module",