@serve.zone/appstore 0.2.2 → 0.2.3
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/apps/nextcloud/versions/1.0.0/config.json +1 -1
- package/apps/valkey/app.json +10 -0
- package/apps/valkey/versions/1.0.0/config.json +4 -0
- package/appstore.json +3 -3
- package/changelog.md +5 -0
- package/package.json +3 -3
- package/readme.md +4 -4
- package/apps/redis/app.json +0 -10
- package/apps/redis/versions/1.0.0/config.json +0 -4
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "valkey",
|
|
3
|
+
"name": "Valkey",
|
|
4
|
+
"description": "Open-source in-memory data store for caching and message brokering",
|
|
5
|
+
"category": "Databases",
|
|
6
|
+
"iconName": "database",
|
|
7
|
+
"latestVersion": "1.0.0",
|
|
8
|
+
"versions": ["1.0.0"],
|
|
9
|
+
"maintainer": "serve.zone"
|
|
10
|
+
}
|
package/appstore.json
CHANGED
|
@@ -152,9 +152,9 @@
|
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
|
-
"id": "
|
|
156
|
-
"name": "
|
|
157
|
-
"description": "
|
|
155
|
+
"id": "valkey",
|
|
156
|
+
"name": "Valkey",
|
|
157
|
+
"description": "Open-source in-memory data store used as database, cache, and message broker.",
|
|
158
158
|
"category": "Database",
|
|
159
159
|
"iconName": "database",
|
|
160
160
|
"latestVersion": "1.0.0",
|
package/changelog.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
## Pending
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## 2026-05-28 - 0.2.3
|
|
7
|
+
|
|
8
|
+
- replace Redis template and requirements with Valkey
|
|
9
|
+
- Renames the standalone key-value template to `valkey` and updates dependent platform requirements.
|
|
10
|
+
|
|
6
11
|
## 2026-05-28 - 0.2.2
|
|
7
12
|
|
|
8
13
|
- allow mixed-case App Store env var keys and validate all curated version configs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serve.zone/appstore",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "serve.zone App Store metadata, parser, and resolver client.",
|
|
6
6
|
"type": "module",
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"author": "Task Venture Capital GmbH",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@serve.zone/interfaces": "^6.
|
|
13
|
+
"@serve.zone/interfaces": "^6.2.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@git.zone/tsbuild": "^4.4.2",
|
|
17
17
|
"@git.zone/tsdoc": "^2.0.6",
|
|
18
18
|
"@git.zone/tstest": "^3.6.6",
|
|
19
|
-
"@types/node": "^25.9.
|
|
19
|
+
"@types/node": "^25.9.1"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"apps/**/*",
|
package/readme.md
CHANGED
|
@@ -38,7 +38,7 @@ The App Store currently lists 20 app templates.
|
|
|
38
38
|
| `plausible` | Plausible Analytics | Analytics | `plausible/analytics:latest` | `8000` |
|
|
39
39
|
| `portainer` | Portainer | Dev Tools | `portainer/portainer-ce:latest` | `9000` |
|
|
40
40
|
| `postgres` | PostgreSQL | Database | `postgres:16-alpine` | `5432` |
|
|
41
|
-
| `
|
|
41
|
+
| `valkey` | Valkey | Database | `valkey/valkey:9.1.0-alpine` | `6379` |
|
|
42
42
|
| `rustdesk-server` | RustDesk Server | Remote Access | `rustdesk/rustdesk-server-s6:latest` | `21116` |
|
|
43
43
|
| `siprouter` | SIP Router | Communication | `code.foss.global/serve.zone/siprouter:1.28.0` | `3060` |
|
|
44
44
|
| `uptime-kuma` | Uptime Kuma | Monitoring | `louislam/uptime-kuma:latest` | `3001` |
|
|
@@ -54,12 +54,12 @@ Some templates ask Onebox to provision local platform services and inject connec
|
|
|
54
54
|
| `cloudly` | MongoDB, S3 | Requires Onebox `2.2.0` or newer. Uses provisioned MongoDB and MinIO/S3 values for Cloudly state and registry storage, and reports initial admin credentials through hosted-app lifecycle. |
|
|
55
55
|
| `ghost` | MariaDB | Uses MySQL-style `database__connection__*` environment variables. |
|
|
56
56
|
| `gitea` | MariaDB | Uses Gitea database environment variables with `${MARIADB_*}` placeholders. |
|
|
57
|
-
| `nextcloud` | MariaDB,
|
|
57
|
+
| `nextcloud` | MariaDB, Valkey | Uses MySQL-compatible database variables. Valkey is declared as a platform requirement. |
|
|
58
58
|
| `plausible` | ClickHouse | Declares ClickHouse as a platform requirement. |
|
|
59
59
|
| `siprouter` | MongoDB, S3 | Uses SmartData state and object storage for telephony-related runtime data. |
|
|
60
60
|
| `wordpress` | MariaDB | Uses standard WordPress database environment variables. |
|
|
61
61
|
|
|
62
|
-
Standalone templates such as `nginx`, `adminer`, `
|
|
62
|
+
Standalone templates such as `nginx`, `adminer`, `valkey`, `portainer`, `mattermost`, `n8n`, `uptime-kuma`, and `vaultwarden` currently define only image and port unless their version config adds explicit environment variables. `rustdesk-server` uses the official all-in-one s6 image and requires `RELAY` to advertise the public relay endpoint; RustDesk clients also require firewall access to TCP `21115`, TCP/UDP `21116`, TCP `21117`, and optional web-client TCP `21118`/`21119`.
|
|
63
63
|
|
|
64
64
|
## Template Schema In Practice
|
|
65
65
|
|
|
@@ -81,7 +81,7 @@ Version configs use a small, pragmatic schema understood by serve.zone runtimes:
|
|
|
81
81
|
"mariadb": true,
|
|
82
82
|
"mongodb": true,
|
|
83
83
|
"s3": true,
|
|
84
|
-
"
|
|
84
|
+
"valkey": true,
|
|
85
85
|
"clickhouse": true
|
|
86
86
|
},
|
|
87
87
|
"minOneboxVersion": "1.24.2"
|
package/apps/redis/app.json
DELETED