Skip to content

hideokamoto/lambda-edge-controller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Hidetaka Okamoto
Oct 8, 2021
aa79508 · Oct 8, 2021

History

37 Commits
Oct 8, 2021
Sep 3, 2019
Sep 6, 2019
Sep 6, 2019
Sep 3, 2019
Sep 3, 2019
Sep 3, 2019
Sep 3, 2019
Sep 3, 2019
Sep 3, 2019
Oct 8, 2021
Sep 3, 2019
Sep 3, 2019
Sep 3, 2019
Oct 8, 2021
Oct 8, 2021
Jun 4, 2020
Sep 3, 2019
Sep 3, 2019
Oct 8, 2021

Repository files navigation

Lambda@edge function controller

Simply manager for Lambda@edge.

Getting started

$ git clone YOUR_REPO_URI
$ cd YOUR_REPO_URI

// Put your GitHub Personal Access Token
$ mv .envrc.example .envrc
$ vim .envrc
export CONVENTIONAL_GITHUB_RELEASER_TOKEN=PUT_YOUR_GITHUB_ACCESS_TOKEN

// Install
$ yarn
or
$ npm install

Commit message rule

The repository runs commitlint. We have to follow "Conventional Commit" to make a commit message.

https://www.conventionalcommits.org/en/v1.0.0-beta.4/

$ git commit -m "<type>[optional scope]: <description>

[optional body]

[optional footer]"

Contribution

// clone
$ git clone git@github.com:hideokamoto/lambda-edge-controller.git
$ cd lambda-edge-controller

// setup
$ yarn

// Unit test
$ yarn test
or
$ yarn run test:watch

// Lint
$ yarn run lint
or
$ yarn run lint --fix

// Build
$ yarn run build

// Rebuild docs
$ yarn run doc