Replies: 1 comment 2 replies
-
补充部署请求集合结构: {
_id: ObjectId,
source_appid: string,
target_appid: string,
functions: {
type: 'all' | 'part',
items: [ functions ]
},
policies: {
type: 'all' | 'part',
items: [ ...policies ]
},
status: 'pending' | 'accepted',
created_at: Date,
updated_at: Date
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
远程部署
介绍
实现目标环境的推送和部署。当前主要推送部署的资源包括: 函数
functions
、 数据库访问策略policies
。远程部署整体设计思路
1.文档对象设计
2.接口设计
Beta Was this translation helpful? Give feedback.
All reactions