Skip to content

Latest commit

 

History

History
78 lines (63 loc) · 3.02 KB

readme.md

File metadata and controls

78 lines (63 loc) · 3.02 KB
title description position category
命令操作文档
Serverless Devs 命令操作文档
1
命令

命令操作文档

前言

Serverless Devs 可以通过-h唤起对应命令的帮助文档,例如查看 s 命令的帮助信息可以是:s -h

$ s -h
🚀  Welcome to the Serverless Devs.

Options
  --debug                     Open debug model.              
  --skip-actions              Skip the extends section.      
  -t, --template <path>       Specify the template file.     
  -a, --access <aliasName>    Specify the access alias name. 
  -v, --version               Output the version number.     
  -h, --help                  Display help for command.      

Commands
  config                      👤  Configure venders account.                
  init                        💞  Initializing a serverless project.        
  cli                         🐚  Command line operation without yaml mode. 
  verify                      🔎  Verify the application.                   
  set                         🔧  Settings for the tool.                    
  clean                       💥  Clean up the environment.                 
  component                   🔌  Installed component information.          


Examples
  init                        Perform [s init] fast experience Serverless Devs. 

🧭  More information: https://github.com/Serverless-Devs/Serverless-Devs
🚀  More applications: https://registry.serverless-devs.com

全局参数

参数全称 参数缩写 默认取值 参数含义 备注
template t s.yaml/s.yml 指定资源描述文件
access a yaml中所指定的access信息/default 指定本次部署时的密钥信息 可以使用通过config命令配置的密钥信息,以及配置到环境变量的密钥信息
skip-actions - - 跳过yaml所设置的actions模块 -
debug - - 开启Debug模式 开启Debug模式后可以查看到更多的工具执行过程信息
version v - 查看版本信息 -
help h - 查看帮助信息 -

命令详情