feat: 应用商店升级到 v2 版本 (#91)

This commit is contained in:
zhengkunwang223
2023-05-18 18:25:00 +08:00
committed by GitHub
parent f29958aac0
commit a1b44954ba
525 changed files with 1807 additions and 3756 deletions
+25
View File
@@ -0,0 +1,25 @@
additionalProperties:
formFields:
- default: user
envKey: PANEL_DB_ROOT_USER
labelEn: Username
labelZh: 用户名
random: true
required: true
rule: paramCommon
type: text
- default: password
envKey: PANEL_DB_ROOT_PASSWORD
labelEn: Password
labelZh: 用户密码
random: true
required: true
rule: paramComplexity
type: password
- default: 5432
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
+20
View File
@@ -0,0 +1,20 @@
name: PostgreSQL
tags:
- 数据库
title: PostgreSQL 开源关系型数据库
type: 数据库
description: PostgreSQL 开源关系型数据库
additionalProperties:
key: postgresql
name: PostgreSQL
tags:
- Database
shortDescZh: PostgreSQL 开源关系型数据库
shortDescEn: Open Source Relational Database
type: runtime
crossVersionUpdate: false
limit: 1
recommend: 0
website: https://www.postgresql.org/
github: https://github.com/postgres/postgres
document: https://www.postgresql.org/docs/

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

@@ -1,33 +0,0 @@
{
"formFields": [
{
"type": "text",
"labelZh": "用户名",
"labelEn": "Username",
"required": true,
"default": "user",
"random": true,
"rule": "paramCommon",
"envKey": "PANEL_DB_ROOT_USER"
},
{
"type": "password",
"labelZh": "用户密码",
"labelEn": "Password",
"required": true,
"default": "password",
"random": true,
"rule": "paramComplexity",
"envKey": "PANEL_DB_ROOT_PASSWORD"
},
{
"type": "number",
"labelZh": "端口",
"labelEn": "Port",
"required": true,
"default": 5432,
"rule": "paramPort",
"envKey": "PANEL_APP_PORT_HTTP"
}
]
}