@cortex-context/cli 0.0.12 → 0.0.14

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.
@@ -38,7 +38,7 @@ services:
38
38
  NEO4J_URI: bolt://neo4j:7687
39
39
  NEO4J_USER: neo4j
40
40
  NEO4J_PASSWORD: cortex-local
41
- CORTEX_API_TOKEN: ${CORTEX_API_TOKEN:-dev-token-local}
41
+ CORTEX_API_TOKEN: ${CORTEX_API_TOKEN:-}
42
42
  LOG_LEVEL: INFO
43
43
  ports:
44
44
  - "8082:8082"
@@ -46,10 +46,17 @@ services:
46
46
  neo4j:
47
47
  condition: service_healthy
48
48
  healthcheck:
49
- test: ["CMD", "wget", "-qO-", "http://localhost:8082/health"]
49
+ test:
50
+ [
51
+ "CMD",
52
+ "python",
53
+ "-c",
54
+ "import urllib.request; urllib.request.urlopen('http://localhost:8082/health')",
55
+ ]
50
56
  interval: 10s
51
- timeout: 5s
57
+ timeout: 10s
52
58
  retries: 10
59
+ start_period: 20s
53
60
  restart: unless-stopped
54
61
 
55
62
  volumes:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cortex-context/cli",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
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"