clawsql 0.1.3 → 0.1.5
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/app.js +2 -2
- package/dist/config/settings.js +1 -1
- package/docker-compose.allinone.yml +1 -1
- package/docker-compose.demo.yml +2 -2
- package/docker-compose.yml +1 -1
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -90,7 +90,7 @@ ClawSQL provides comprehensive automation for MySQL cluster management:
|
|
|
90
90
|
- Prometheus for metrics collection
|
|
91
91
|
- Grafana for visualization
|
|
92
92
|
`,
|
|
93
|
-
version: '0.1.
|
|
93
|
+
version: '0.1.5',
|
|
94
94
|
},
|
|
95
95
|
servers: [
|
|
96
96
|
{ url: '/', description: 'Current server' },
|
|
@@ -115,7 +115,7 @@ ClawSQL provides comprehensive automation for MySQL cluster management:
|
|
|
115
115
|
fastify.get('/', async () => {
|
|
116
116
|
return {
|
|
117
117
|
name: 'ClawSQL',
|
|
118
|
-
version: '0.1.
|
|
118
|
+
version: '0.1.5',
|
|
119
119
|
description: 'MySQL Cluster Automation and Operations Management',
|
|
120
120
|
docs: '/docs',
|
|
121
121
|
health: '/health',
|
package/dist/config/settings.js
CHANGED
|
@@ -94,7 +94,7 @@ const SyncSettingsSchema = zod_1.z.object({
|
|
|
94
94
|
});
|
|
95
95
|
const SettingsSchema = zod_1.z.object({
|
|
96
96
|
appName: zod_1.z.string().default('ClawSQL'),
|
|
97
|
-
appVersion: zod_1.z.string().default('0.1.
|
|
97
|
+
appVersion: zod_1.z.string().default('0.1.5'),
|
|
98
98
|
debug: zod_1.z.boolean().default(false),
|
|
99
99
|
metadataDb: MetadataDBSettingsSchema,
|
|
100
100
|
orchestrator: OrchestratorSettingsSchema,
|
package/docker-compose.demo.yml
CHANGED
|
@@ -42,7 +42,7 @@ services:
|
|
|
42
42
|
# MySQL Replica 1 (Reader)
|
|
43
43
|
# =============================================================================
|
|
44
44
|
mysql-replica-1:
|
|
45
|
-
image: mysql:8.0
|
|
45
|
+
image: docker.io/library/mysql:8.0
|
|
46
46
|
container_name: mysql-replica-1
|
|
47
47
|
hostname: mysql-replica-1
|
|
48
48
|
ports:
|
|
@@ -76,7 +76,7 @@ services:
|
|
|
76
76
|
# MySQL Replica 2 (Reader)
|
|
77
77
|
# =============================================================================
|
|
78
78
|
mysql-replica-2:
|
|
79
|
-
image: mysql:8.0
|
|
79
|
+
image: docker.io/library/mysql:8.0
|
|
80
80
|
container_name: mysql-replica-2
|
|
81
81
|
hostname: mysql-replica-2
|
|
82
82
|
ports:
|
package/docker-compose.yml
CHANGED
|
@@ -15,7 +15,7 @@ services:
|
|
|
15
15
|
# ClawSQL Application (Node.js)
|
|
16
16
|
# =============================================================================
|
|
17
17
|
clawsql:
|
|
18
|
-
image:
|
|
18
|
+
image: kefan96/clawsql:latest
|
|
19
19
|
build:
|
|
20
20
|
context: .
|
|
21
21
|
dockerfile: docker/Dockerfile.node
|