diff --git a/apps/jsonhero/README.md b/apps/jsonhero/README.md new file mode 100644 index 00000000..2e218fc0 --- /dev/null +++ b/apps/jsonhero/README.md @@ -0,0 +1,11 @@ +# JSON Hero + +JSON Hero 为您提供了一个干净、美观且具有额外功能的用户界面,使您可以轻松阅读和理解 JSON 文件。 + +- 以您喜欢的任何方式查看 JSON:列视图、树视图、编辑器视图等 +- 自动推断字符串的内容并提供有用的预览 +- 创建推断的 JSON 模式,可用于验证您的 JSON +- 快速扫描相关值以检查边缘情况 +- 搜索 JSON 文件(键和值) +- 键盘可访问 +- 通过路径支持轻松共享 URL \ No newline at end of file diff --git a/apps/jsonhero/data.yml b/apps/jsonhero/data.yml new file mode 100644 index 00000000..6ef630f0 --- /dev/null +++ b/apps/jsonhero/data.yml @@ -0,0 +1,19 @@ +name: JSON Hero +tags: + - 实用工具 +title: 开源、美观的 Web JSON 浏览器 +description: 开源、美观的 Web JSON 浏览器 +additionalProperties: + key: jsonhero + name: JSON Hero + tags: + - Tool + shortDescZh: 开源、美观的 Web JSON 浏览器 + shortDescEn: An open-source, beautiful JSON explorer + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://jsonhero.io + github: https://github.com/triggerdotdev/jsonhero-web + document: https://github.com/triggerdotdev/jsonhero-web diff --git a/apps/jsonhero/latest/data.yml b/apps/jsonhero/latest/data.yml new file mode 100644 index 00000000..b3cc138c --- /dev/null +++ b/apps/jsonhero/latest/data.yml @@ -0,0 +1,10 @@ +additionalProperties: + formFields: + - default: 40178 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number \ No newline at end of file diff --git a/apps/jsonhero/latest/docker-compose.yml b/apps/jsonhero/latest/docker-compose.yml new file mode 100644 index 00000000..2467a400 --- /dev/null +++ b/apps/jsonhero/latest/docker-compose.yml @@ -0,0 +1,14 @@ +services: + jsonhero: + container_name: ${CONTAINER_NAME} + image: henryclw/jsonhero-web:latest + restart: always + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:8787 + labels: + createdBy: "Apps" +networks: + 1panel-network: + external: true diff --git a/apps/jsonhero/logo.png b/apps/jsonhero/logo.png new file mode 100644 index 00000000..52b8c633 Binary files /dev/null and b/apps/jsonhero/logo.png differ