腾讯云介绍
云函数
vscode 插件
- vscode 安装
Tencent Serverless Toolkit for VS Code
插件
命令行
npm i -g serverless-cloud-framework
$ scf -v
serverless-cloud-framework
serverless-cloud-framework version: 1.0.2(npm)
$ scf registry
...
• scf-golang - helloworld 空白模版函数
• scf-php - helloworld 空白模版函数
• scf-python - helloworld 空白模版函数
• scf-nodejs - helloworld 空白模版函数
...
scf init scf-nodejs --name my-app
或
$ mkdir tmp
$ cd tmp
$ serverless-cloud-framework
$ scf login
# 登录后查看信息
$ cat .env
TENCENT_APP_ID=125xxx
TENCENT_SECRET_ID=xxx
TENCENT_SECRET_KEY=xxx
TENCENT_TOKEN=xxx
cd demo
scf info
$ tree .
.
├── README.md
├── README_EN.md
├── index.js # 入口函数
├── serverless.yml # 配置文件
└── .env # 环境变量文件
scf deploy
scf dev