We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
. ├── dist │ ├── index.js │ ├── mail.js │ ├── notion.js │ └── parser.js ├── node_modules ├── package.json ├── serverless.yml ├── src │ ├── index.ts │ ├── mail.ts │ ├── notion.ts │ └── parser.ts ├── tsconfig.json └── yarn.lock
name: my-bills component: scf inputs: src: ./ handler: index.main_handler region: ap-guangzhou runtime: Nodejs10.15 memorySize: 128 timeout: 3 type: event events: - timer: name: timer parameters: cronExpression: "0 0 6 * *" enable: true
handler
node_modules
The text was updated successfully, but these errors were encountered:
No branches or pull requests
项目结构
. ├── dist │ ├── index.js │ ├── mail.js │ ├── notion.js │ └── parser.js ├── node_modules ├── package.json ├── serverless.yml ├── src │ ├── index.ts │ ├── mail.ts │ ├── notion.ts │ └── parser.ts ├── tsconfig.json └── yarn.lock
serverless.yaml
疑问🤔️
handler
需要怎么样才能加上文件夹?node_modules
需要上传吗。需要的话 怎样配置比较合适?The text was updated successfully, but these errors were encountered: