0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Serverless Framework】コマンドまとめ

Last updated at Posted at 2021-02-26

Serverless Frameworkのコマンドがイマイチ自分の中で、整理できてなかったので、後でササっと見返せるようにまとめました。(というか、Serverless Frameworkの使い方まとめ | Serverless Operations から必要な箇所を抜粋したまとめです。)

###インストール

$ npm install -g serverless

サービス用テンプレート作成

$ serverless create --template aws-nodejs --name my-special-service --path my-special-service

--template オプションは下のようなものがある。(他の言語は公式ドキュメント参照)

  • aws-nodejs
  • aws-nodejs-typescript
  • aws-nodejs-ecma-script
  • aws-python
  • aws-python3

GitHubにある既存のサービスをインポートする場合

$ serverless install -u [GITHUB URL OF SERVICE]

デプロイ

$ serverless deploy -v

-v オプションを付けるとverboseというモードでデプロイが実行され、途中経過がターミナル上で確認できる。

デフォルトで、devというステージかつus-east-1リージョンにデプロイされる。serverless.ymlで変更可。

リソースの削除

$ serverless remove

参考

Serverless Frameworkの使い方まとめ | Serverless Operations

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?