-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved configuration of the tool (#30)
* Customization improvements 1) Fill variables in .env instead deploy.env and Makefile 2) Autodetecting CloudWatch events. 3) Remove slackbot customization * Use npm scripts instead of makefile * Fix image urls in readme * Changed env variables examples and fixed names in scripts * Remove old node versions from TravisCI
- Loading branch information
1 parent
8260622
commit aac6157
Showing
12 changed files
with
1,196 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ENCRYPTED_HOOK_URL= you can use ENCRYPTED_HOOK_URL if you want | ||
UNENCRYPTED_HOOK_URL= | ||
AWS_FUNCTION_NAME= | ||
AWS_REGION=eu-west-1 | ||
AWS_ROLE="arn:aws:iam::123456789123:role/lambda_exec_role" | ||
|
||
# You can get AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY here: https://console.aws.amazon.com/iam/home#/users | ||
# Click on user -> Security credentials -> Access keys -> Create access key | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
*~ | ||
.env | ||
deploy.env | ||
tmp/deploy.env | ||
npm-debug.log | ||
|
||
build/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,4 @@ | |
language: node_js | ||
|
||
node_js: | ||
- 0.10 | ||
- 0.12 | ||
- 4 | ||
- 5 | ||
- 6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.