File tree Expand file tree Collapse file tree 13 files changed +44
-114
lines changed
event-function/fc-event-python3 Expand file tree Collapse file tree 13 files changed +44
-114
lines changed Original file line number Diff line number Diff line change 1- # 快速体验 Python3.6 Event 函数案例
1+ # 快速体验 Python3 Event 函数案例
22
3- 欢迎您使用Serverless Devs开发者工具进行项目开发,本实验是基于Serverless Devs部署 Python3.6 Event 案例到阿里云函数计算。
3+ 欢迎您使用Serverless Devs开发者工具进行项目开发,本实验是基于Serverless Devs部署 Python3 Event 案例到阿里云函数计算。
44
55整个实验过程包括:
6- - [ 下载工具] ( #下载工具 )
7- - [ 配置密钥] ( #配置密钥 )
8- - [ 初始化项目] ( #初始化项目 )
9- - [ 部署项目] ( #部署项目 )
10- - [ 更多信息] ( #更多信息 )
11-
12- > - [ :octocat: 源代码] ( https://github.com/devsapp/start-fc/tree/main/event-function/fc-event-python3.6/src )
6+ - [ 快速体验 Python3 Event 函数案例] ( #快速体验-python3-event-函数案例 )
7+ - [ 下载工具] ( #下载工具 )
8+ - [ 配置密钥] ( #配置密钥 )
9+ - [ 初始化项目] ( #初始化项目 )
10+ - [ 部署项目] ( #部署项目 )
11+ - [ 更多信息] ( #更多信息 )
12+
13+ > - [ :octocat: 源代码] ( https://github.com/devsapp/start-fc/tree/main/event-function/fc-event-python3/src )
1314
1415## 下载工具
1516
Original file line number Diff line number Diff line change 11Type : Application
22Name : start-fc-event-python3
3- Version : 1.1.23
3+ Version : 1.1.24
44Provider :
55 - 阿里云
66Description : 快速部署一个 Python 3 的 Event 类型的 Hello World 函数到阿里云函数计算。
@@ -65,6 +65,6 @@ Parameters:
6565 default : python3.9
6666 description : 创建应用所在的地区
6767 enum :
68- - python3.6
6968 - python3.9
70- - python3.10
69+ - python3.10
70+ - python3.6
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # 快速体验 Python3.6 HTTP 函数案例
1+ # 快速体验 Python3 HTTP 函数案例
22
3- 欢迎您使用Serverless Devs开发者工具进行项目开发,本实验是基于Serverless Devs部署 Python3.6 HTTP 案例到阿里云函数计算。
3+ 欢迎您使用Serverless Devs开发者工具进行项目开发,本实验是基于Serverless Devs部署 Python3 HTTP 案例到阿里云函数计算。
44
55整个实验过程包括:
6- - [ 下载工具] ( #下载工具 )
7- - [ 配置密钥] ( #配置密钥 )
8- - [ 初始化项目] ( #初始化项目 )
9- - [ 部署项目] ( #部署项目 )
10- - [ 更多信息] ( #更多信息 )
11-
12- > - [ :octocat: 源代码] ( https://github.com/devsapp/start-fc/tree/main/http-function/fc-http-python3.6/src )
6+ - [ 快速体验 Python3 HTTP 函数案例] ( #快速体验-python3-http-函数案例 )
7+ - [ 下载工具] ( #下载工具 )
8+ - [ 配置密钥] ( #配置密钥 )
9+ - [ 初始化项目] ( #初始化项目 )
10+ - [ 部署项目] ( #部署项目 )
11+ - [ 更多信息] ( #更多信息 )
12+
13+ > - [ :octocat: 源代码] ( https://github.com/devsapp/start-fc/tree/main/http-function/fc-http-python3/src )
1314
1415## 下载工具
1516
File renamed without changes.
Original file line number Diff line number Diff line change 11Type : Application
22Name : start-fc-http-python3
3- Version : 1.1.22
3+ Version : 1.1.23
44Provider :
55 - 阿里云
6- Description : 快速部署一个 Python 3.6 的 HTTP 类型的 Hello World 函数到阿里云函数计算。
6+ Description : 快速部署一个 Python 3 的 HTTP 类型的 Hello World 函数到阿里云函数计算。
77HomePage : https://github.com/devsapp/start-fc
88Tags :
99 - 函数计算
@@ -22,6 +22,7 @@ Parameters:
2222 - region
2323 - serviceName
2424 - functionName
25+ - runtime
2526 properties :
2627 region :
2728 title : 地域
@@ -57,4 +58,13 @@ Parameters:
5758 title : 函数名
5859 type : string
5960 default : start-fc-http-python3
60- description : 函数名称,只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-64 之间
61+ description : 函数名称,只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-64 之间
62+ runtime :
63+ title : python 运行时
64+ type : string
65+ default : python3.9
66+ description : 创建应用所在的地区
67+ enum :
68+ - python3.9
69+ - python3.10
70+ - python3.6
Original file line number Diff line number Diff line change 1+ src/readme.md
File renamed without changes.
Original file line number Diff line number Diff line change 1414
1515<description >
1616
17- 快速部署一个 Python 3.6 的 HTTP 类型的 Hello World 函数到阿里云函数计算。
17+ 快速部署一个 Python 3 的 HTTP 类型的 Hello World 函数到阿里云函数计算。
1818
1919</description >
2020
3333
3434# 代码 & 预览
3535
36- - [ :smiley_cat : 源代码] ( https://github.com/devsapp/start-fc/blob/main/http-function/fc-http-python3.6 )
36+ - [ :smiley_cat : 源代码] ( https://github.com/devsapp/start-fc/blob/main/http-function/fc-http-python3 )
3737
3838</codepre >
3939
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ services:
4949 function :
5050 name : " {{ functionName }}"
5151 description : ' hello world by serverless devs'
52- runtime : python3
52+ runtime : " {{ runtime }} "
5353 codeUri : ./code
5454 handler : index.handler
5555 memorySize : 128
You can’t perform that action at this time.
0 commit comments