@qelos/redis 3.9.0

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/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Polyform Shield License 1.0.0
2
+
3
+ Copyright (c) [שנת הפרסום] Qelos LTD
4
+
5
+ Your use of this software is governed by the Polyform Shield License 1.0.0.
6
+
7
+ You may obtain a copy of the License at:
8
+ https://polyformproject.org/licenses/shield/1.0.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+
12
+ Additional Terms – Exception Notice:
13
+
14
+ The author of this software grants additional permissions beyond the Polyform Shield License 1.0.0:
15
+
16
+ ✅ All uses of the software are permitted — including modification, distribution, commercial use, and sublicensing — as long as the software is not used to create, offer, or operate any product or service that competes directly with Qelos (https://qelos.io), a no-code platform for building AI-assisted SaaS applications.
17
+
18
+ ❌ "Direct competition" includes platforms, tools, or services that enable users to visually or programmatically create SaaS applications with the assistance of artificial intelligence.
19
+
20
+ This exception does not modify the terms of the original Polyform Shield License for other users and applies only by explicit permission of the licensor.
@@ -0,0 +1,9 @@
1
+ services:
2
+ qelos-redis:
3
+ image: redis/redis-stack-server:latest
4
+ container_name: qelos-redis
5
+ ports:
6
+ - "6379:6379"
7
+ restart: always
8
+ networks:
9
+ common_network:
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@qelos/redis",
3
+ "version": "3.9.0",
4
+ "scripts": {
5
+ "db": "docker compose up -d"
6
+ },
7
+ "author": "David Meir-Levy <davidmeirlevy@gmail.com>",
8
+ "license": "Apache-2.0",
9
+ "gitHead": "13468bc51557291935b96b1aeaa837b8b52861e8",
10
+ "private": false,
11
+ "publishConfig": {
12
+ "access": "public"
13
+ }
14
+ }