-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
37 lines (37 loc) · 1.04 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "heroku-s3-git-deploy",
"description": "Micro app for automatically deploying to Amazon S3 on a BitBucket commit.",
"repository": "https://github.com/chesleybrown/heroku-s3-git-deploy",
"logo": "https://raw.githubusercontent.com/chesleybrown/heroku-s3-git-deploy/master/media/logo.png",
"keywords": ["node", "express", "git", "s3", "amazon", "bitbucket"],
"env": {
"BRANCH": {
"description": "The branch to checkout and push changes for.",
"value": "master"
},
"BITBUCKET_USERNAME": {
"description": "Your Bitbucket username or team name.",
"value": ""
},
"BITBUCKET_PASSWORD": {
"description": "Your Bitbucket password or API key.",
"value": ""
},
"AWS_ACCESS_KEY_ID": {
"description": "Your Amazon access key id.",
"value": ""
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Your Amazon secret access key.",
"value": ""
},
"AWS_REGION": {
"description": "Your Amazon region.",
"value": ""
},
"AWS_BUCKET": {
"description": "Your Amazon bucket to deploy content.",
"value": ""
}
}
}