-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (38 loc) · 1.07 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
38
{
"name": "Bucket Wiki",
"description": "Amazon S3 backed wiki",
"keywords": [
"Wiki",
"golang"
],
"website": "https://bucketwiki.herokuapp.com",
"repository": "https://github.com/juntaki/bucketwiki",
"success_url": "/",
"env": {
"AWS_BUCKET_NAME": {
"description": "Target AWS bucket name."
},
"AWS_BUCKET_REGION": {
"description": "Target AWS region."
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key."
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret access key."
},
"TWITTER_KEY": {
"description": "Twitter API access key for authentication."
},
"TWITTER_SECRET": {
"description": "Twitter API secret access key for authentication."
},
"URL": {
"description": "Callback URL for twitter authentication."
},
"WIKI_SECRET": {
"description": "A secret key for wiki",
"generator": "secret"
}
}
}