@cortex-context/cli 0.0.14 → 0.0.15

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.
@@ -40,8 +40,13 @@ services:
40
40
  NEO4J_PASSWORD: cortex-local
41
41
  CORTEX_API_TOKEN: ${CORTEX_API_TOKEN:-}
42
42
  LOG_LEVEL: INFO
43
+ SPECS_DIR: /specs
44
+ REPOS_DIR: /repos
43
45
  ports:
44
46
  - "8082:8082"
47
+ volumes:
48
+ - ${SPECS_DIR_HOST:-./specs-sample}:/specs:ro
49
+ - ${REPOS_DIR_HOST:-./repos-sample}:/repos:ro
45
50
  depends_on:
46
51
  neo4j:
47
52
  condition: service_healthy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cortex-context/cli",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "CLI to initialize and manage Cortex Context (Knowledge Graph) in any VS Code workspace",
5
5
  "bin": {
6
6
  "cortex-context": "./dist/index.js"