@curaious/uno 0.1.11 → 0.1.12

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.
@@ -83,6 +83,40 @@ services:
83
83
  condition: service_healthy
84
84
  restart: unless-stopped
85
85
 
86
+ uno-temporal-worker:
87
+ image: ${UNO_IMAGE:-praveenraj9495/uno-gateway:latest}
88
+ command: ["temporal-worker"]
89
+ env_file:
90
+ - env_vars
91
+ depends_on:
92
+ uno-postgres:
93
+ condition: service_healthy
94
+ uno-redis:
95
+ condition: service_healthy
96
+ uno-clickhouse:
97
+ condition: service_healthy
98
+ restart: unless-stopped
99
+ profiles:
100
+ - temporal
101
+ - all
102
+
103
+ uno-restate-service:
104
+ image: ${UNO_IMAGE:-praveenraj9495/uno-gateway:latest}
105
+ command: ["restate-service"]
106
+ env_file:
107
+ - env_vars
108
+ depends_on:
109
+ uno-postgres:
110
+ condition: service_healthy
111
+ uno-redis:
112
+ condition: service_healthy
113
+ uno-clickhouse:
114
+ condition: service_healthy
115
+ restart: unless-stopped
116
+ profiles:
117
+ - restate
118
+ - all
119
+
86
120
  volumes:
87
121
  clickhouse_data:
88
122
  postgres_data:
@@ -15,3 +15,10 @@ REDIS_HOST=uno-redis
15
15
  REDIS_PORT=6379
16
16
 
17
17
  ALLOWED_HEADERS="Content-Type, Authorization"
18
+
19
+ RESTATE_WORKER_HOST_PORT="0.0.0.0:9080"
20
+ RESTATE_SERVER_ENDPOINT="http://host.docker.internal:8081"
21
+
22
+ TEMPORAL_SERVER_HOST_PORT="host.docker.internal:7233"
23
+
24
+ RUNTIME_ENABLED=""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curaious/uno",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Uno - AI Gateway and Agent Framework",
5
5
  "bin": {
6
6
  "uno": "./bin/cli.js"