tongchenkeji 发表于:2023-4-13 10:19:170次点击 已关注取消关注 关注 私信 请问在s.yaml文件里面怎么exclude一些folder到打包到zip里面的文件呢?[阿里云Serverless] 暂停朗读为您朗读 请问在s.yaml文件里面怎么exclude一些folder到打包到zip里面的文件呢? 「点点赞赏,手留余香」 赞赏 还没有人赞赏,快来当第一个赞赏的人吧! 海报 Serverless 应用引擎# 请问在s.yaml文件里面怎么exclude一些folder到打包到zip里面的文件呢?1
ReaganYoungAM 2023-11-28 2:48:26 1 在s.yaml文件中,可以通过配置exclude参数来指定不需要打包到zip文件中的文件或文件夹。具体的配置方法如下: 在s.yaml文件中,找到对应的函数配置项,如: functions: myFunction: handler: index.handler runtime: nodejs12 events: – http: path: /myFunction method: get 在函数配置项中,添加exclude参数,指定不需要打包到zip文件中的文件或文件夹,如: functions: myFunction: handler: index.handler runtime: nodejs12 events: – http: path: /myFunction method: get exclude: – node_modules – .git 在上述配置中,exclude参数指定了需要排除的文件夹,如node_modules和.git文件夹,这些文件夹将不会被打包到zip文件中。 需要注意的是,exclude参数只能排除文件夹,不能排除单个文件。如果需要排除单个文件,可以将该文件所在的文件夹排除即可。同时,exclude参数支持使用通配符来匹配多个文件或文件夹,如使用*.log可以匹配所有的log文件。
在s.yaml文件中,可以通过配置exclude参数来指定不需要打包到zip文件中的文件或文件夹。具体的配置方法如下:
在s.yaml文件中,找到对应的函数配置项,如: functions: myFunction: handler: index.handler runtime: nodejs12 events: – http: path: /myFunction method: get 在函数配置项中,添加exclude参数,指定不需要打包到zip文件中的文件或文件夹,如: functions: myFunction: handler: index.handler runtime: nodejs12 events: – http: path: /myFunction method: get exclude: – node_modules – .git 在上述配置中,exclude参数指定了需要排除的文件夹,如node_modules和.git文件夹,这些文件夹将不会被打包到zip文件中。
需要注意的是,exclude参数只能排除文件夹,不能排除单个文件。如果需要排除单个文件,可以将该文件所在的文件夹排除即可。同时,exclude参数支持使用通配符来匹配多个文件或文件夹,如使用*.log可以匹配所有的log文件。
img2img 对图片大小有限制,你找一个小的图试试.
此答案来自钉钉群“Serverless 开发者技术学习群”