-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from devsapp/create-support-tags
fix:interface add tags and popCore version
- Loading branch information
Showing
8 changed files
with
87 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
edition: 3.0.0 # 命令行YAML规范版本,遵循语义化版本(Semantic Versioning)规范 | ||
name: test-node-app # 项目名称 | ||
access: quanxi | ||
|
||
vars: | ||
region: ${env('REGION', 'cn-huhehaote')} | ||
|
||
resources: | ||
fcDemo1: # 业务名称/模块名称 | ||
component: ${env('fc_component_version', path('../../../'))} | ||
props: # 组件的属性值 | ||
region: ${vars.region} | ||
functionName: fc3-event-${env('fc_component_function_name', 'nodejs16')}-f1 | ||
runtime: ${env('fc_component_runtime', 'nodejs16')} | ||
code: ./test-auto-code | ||
handler: index.handler | ||
memorySize: 128 | ||
timeout: 30 | ||
vpcConfig: auto | ||
nasConfig: auto | ||
|
||
fcDemo2: # 业务名称/模块名称 | ||
component: ${env('fc_component_version', path('../../../'))} | ||
props: # 组件的属性值 | ||
region: ${vars.region} | ||
functionName: fc3-event-${env('fc_component_function_name', 'nodejs16')}-f2 | ||
runtime: ${env('fc_component_runtime', 'nodejs16')} | ||
code: ./test-auto-code | ||
handler: index.handler | ||
memorySize: 128 | ||
timeout: 30 | ||
vpcConfig: auto | ||
nasConfig: auto | ||
|
||
fcDemo3: # 业务名称/模块名称 | ||
component: ${env('fc_component_version', path('../../../'))} | ||
props: # 组件的属性值 | ||
region: ${vars.region} | ||
functionName: fc3-event-${env('fc_component_function_name', 'nodejs16')}-f3 | ||
runtime: ${env('fc_component_runtime', 'nodejs16')} | ||
code: ./test-auto-code | ||
handler: index.handler | ||
memorySize: 128 | ||
timeout: 30 | ||
vpcConfig: auto | ||
nasConfig: auto |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters