forked from heroku/gemgate
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
22 lines (22 loc) · 671 Bytes
/
app.json
File metadata and controls
22 lines (22 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "Gemgate",
"description": "Implement your private gem storage with heroku and S3",
"repository": "https://github.com/frozenfung/gemgate",
"env": {
"GEMGATE_AUTH": {
"description": "User and password to require for basic auth, joined by :"
},
"AWS_ACCESS_KEY_ID": {
"description": "Your AWS access key for communicating with S3."
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Your AWS secret key for communicating with S3."
},
"S3_BUCKET": {
"description": "Your bucket name."
},
"S3_KEY_PREFIX": {
"description": "Probably random string to prefix file/directory keys with."
}
}
}