https://github.com/takapi327/code-deploy-lifecycle-event-hooks
CodeDeployライフサイクルフックの通知設定用Lambdaアプリ
https://github.com/takapi327/code-deploy-lifecycle-event-hooks
Last synced: about 1 year ago
JSON representation
CodeDeployライフサイクルフックの通知設定用Lambdaアプリ
- Host: GitHub
- URL: https://github.com/takapi327/code-deploy-lifecycle-event-hooks
- Owner: takapi327
- Created: 2021-08-16T12:56:37.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2021-08-22T09:52:52.000Z (almost 5 years ago)
- Last Synced: 2025-02-07T08:29:27.066Z (over 1 year ago)
- Language: TypeScript
- Size: 3.07 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample Code Deploy Lifecycle Event Hooks
## 概要
AWS CodeDeployのライフサイクルイベントフックで起動させるLambdaアプリケーションの設定を行う
各ライフサイクルイベントごとにディレクトリを分けて実装を行う
| Resource | Directory | Note |
| -------- | ---- | ---- |
| BeforeInstall | beforeInstall| |
| AfterInstall | afterInstall| |
## セットアップ
### npm
```bash
$ npm init
$ npm install typescript
$ npm tsc --init
$ npm install --save-dev @types/node
```
### yarn
```bash
$ yarn init
$ yarn add typescript
$ yarn tsc --init
$ yarn add --dev @types/node
```
## クローン
```bash
$ git clone git@github.com:takapi327/code-deploy-lifecycle-event-hooks.git
$ yarn init or npm init
```