mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-05 08:05:56 +00:00
Also add Python CodeQL coverage in the security workflow so repository-level script regression checks stay green when Python source exists. Signed-off-by: dongmucat <1127093059@qq.com>
32 lines
978 B
Text
32 lines
978 B
Text
# SkillHub Secret 配置
|
||
# 复制此文件为 secret.yaml 并修改值
|
||
# cp secret.yaml.example secret.yaml
|
||
|
||
apiVersion: v1
|
||
kind: Secret
|
||
metadata:
|
||
name: skillhub-secret
|
||
type: Opaque
|
||
stringData:
|
||
# PostgreSQL 连接配置
|
||
# 使用外部数据库:修改主机地址和端口
|
||
# 使用内置数据库(overlays/with-infra):保持 postgres:5432
|
||
spring-datasource-url: jdbc:postgresql://postgres:5432/skillhub
|
||
spring-datasource-username: skillhub
|
||
spring-datasource-password: change-me
|
||
|
||
# Bootstrap 管理员密码(敏感)
|
||
bootstrap-admin-password: ChangeMe!2026
|
||
|
||
# GitHub OAuth(可选,用于 GitHub 登录)
|
||
oauth2-github-client-id: ""
|
||
oauth2-github-client-secret: ""
|
||
|
||
# LLM 配置(可选,用于技能扫描)
|
||
skill-scanner-llm-api-key: ""
|
||
skill-scanner-llm-base-url: ""
|
||
skill-scanner-llm-model: ""
|
||
|
||
# S3 存储配置(可选,使用 S3/OSS 时配置)
|
||
skillhub-storage-s3-access-key: ""
|
||
skillhub-storage-s3-secret-key: ""
|