Compare commits

..

4 Commits

Author SHA1 Message Date
320b3ed9eb 1.2.3
Some checks failed
Docker (tags) / security (push) Failing after 12s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2024-10-23 20:09:24 +02:00
7cd6bc0e33 fix(cli): Set up CLI client definition and registry configuration 2024-10-23 20:09:24 +02:00
a218805f27 1.2.2
Some checks failed
Docker (tags) / security (push) Failing after 16s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2024-10-23 20:06:16 +02:00
6f56304e07 fix(docs): Updated documentation with clearer usage instructions and examples. 2024-10-23 20:06:16 +02:00
6 changed files with 24 additions and 4 deletions

View File

@ -1,5 +1,19 @@
# Changelog # Changelog
## 2024-10-23 - 1.2.3 - fix(cli)
Set up CLI client definition and registry configuration
- Added a console log message for CLI identification.
- Defined package name for CLI client.
- Configured npm registries for package distribution.
## 2024-10-23 - 1.2.2 - fix(docs)
Updated documentation with clearer usage instructions and examples.
- Refined setup guides in README.
- Added more detailed examples in code snippets.
- Clarified cloud service integration instructions.
## 2024-10-23 - 1.2.1 - fix(core) ## 2024-10-23 - 1.2.1 - fix(core)
Fixed startup issue for the Cloudly instance Fixed startup issue for the Cloudly instance

View File

@ -1,6 +1,6 @@
{ {
"name": "@serve.zone/cloudly", "name": "@serve.zone/cloudly",
"version": "1.2.1", "version": "1.2.3",
"private": false, "private": false,
"description": "A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.", "description": "A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.",
"type": "module", "type": "module",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/cloudly', name: '@serve.zone/cloudly',
version: '1.2.1', version: '1.2.3',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.' description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
} }

View File

@ -0,0 +1 @@
console.log('this is the cli client.');

View File

@ -1,3 +1,8 @@
{ {
"name": "@serve.zone/cli" "name": "@serve.zone/cli",
"dependencies": [],
"registries": [
"registry.npmjs.org:public",
"verdaccio.lossless.digital:public"
]
} }

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/cloudly', name: '@serve.zone/cloudly',
version: '1.2.1', version: '1.2.3',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.' description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
} }