@kodus/cli 0.0.9 → 0.0.11

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/index.js CHANGED
@@ -6,7 +6,7 @@ import { dirname, join } from 'path';
6
6
  import { setupEnvironment } from './src/commands/install.js';
7
7
 
8
8
  // CLI version
9
- program.version("0.0.9");
9
+ program.version("0.0.11");
10
10
 
11
11
  // Install command
12
12
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kodus/cli",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "CLI tool for Kodus installation and management",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/readme.md CHANGED
@@ -30,7 +30,7 @@ Kodus CLI is your gateway to running Kodus AI Code Review Agents in your own inf
30
30
 
31
31
  ```bash
32
32
  # Install globally
33
- npm install -g kodus-cli
33
+ npm install -g @kodus/cli
34
34
 
35
35
  # Deploy Kodus in your infrastructure
36
36
  kodus install
@@ -34,23 +34,39 @@ services:
34
34
  env_file:
35
35
  - .env
36
36
 
37
+ rabbitmq:
38
+ image: rabbitmq:3.13.4-management-alpine
39
+ container_name: rabbitmq-prod
40
+ hostname: rabbitmq
41
+ ports:
42
+ - "5672:5672"
43
+ - "15672:15672"
44
+ networks:
45
+ - monitoring-network
46
+ - shared-network
47
+ environment:
48
+ - RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS=-rabbit heartbeat 60
49
+ restart: unless-stopped
50
+ env_file:
51
+ - .env
52
+
37
53
  db_kodus_postgres:
38
- image: postgres:latest
54
+ image: pgvector/pgvector:pg16
39
55
  container_name: db_kodus_postgres
40
56
  ports:
41
57
  - "5432:5432"
42
58
  environment:
43
- # These variables must be defined in the .env file
44
59
  POSTGRES_USER: ${API_PG_DB_USERNAME}
45
60
  POSTGRES_PASSWORD: ${API_PG_DB_PASSWORD}
46
61
  POSTGRES_DB: ${API_PG_DB_DATABASE}
47
62
  volumes:
48
63
  - pgdata:/var/lib/postgresql/data
64
+ - ./docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
49
65
  networks:
50
66
  - kodus-backend-services
51
67
 
52
68
  db_kodus_mongodb:
53
- image: mongo:7
69
+ image: mongo:8
54
70
  container_name: db_kodus_mongodb
55
71
  ports:
56
72
  - "27017:27017"
@@ -64,26 +80,6 @@ services:
64
80
  networks:
65
81
  - kodus-backend-services
66
82
 
67
- prometheus:
68
- container_name: prometheus-prod
69
- image: prom/prometheus:latest
70
- environment:
71
- - ENV=production
72
- command:
73
- - "--config.file=/etc/prometheus/prometheus.yml"
74
- - "--storage.tsdb.retention.time=30d"
75
- - "--storage.tsdb.retention.size=50GB"
76
- - "--web.enable-lifecycle"
77
- - "--web.enable-admin-api"
78
- deploy:
79
- resources:
80
- limits:
81
- cpus: "1"
82
- memory: 4G
83
- reservations:
84
- cpus: "0.75"
85
- memory: 2G
86
-
87
83
  migration:
88
84
  image: ghcr.io/kodustech/kodus-ai:latest
89
85
  platform: linux/amd64