-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
app.json
54 lines (51 loc) · 1.64 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Micropub to GitHub",
"description": "An endpoint that accepts Micropub requests, formats them into Jekyll posts and pushes them to a configured GitHub repository.",
"keywords": [
"indieweb",
"micropub",
"api",
"jekyll"
],
"repository": "https://github.com/voxpelli/webpage-micropub-to-github",
"env": {
"MICROPUB_GITHUB_TOKEN": {
"description": "An access token for the GitHub API. Get one at: https://github.com/settings/tokens",
"required": true
},
"MICROPUB_GITHUB_USER": {
"description": "The GitHub user to which the configured repositories belongs.",
"required": true
},
"MICROPUB_GITHUB_BRANCH": {
"description": "Branch to use when pushing. Leave empty/blank to use default.",
"required": false
},
"MICROPUB_SITE_GITHUB_REPO": {
"description": "The name of your GitHub repository.",
"required": true
},
"MICROPUB_SITE_URL": {
"description": "The URL to your site.",
"required": true
},
"MICROPUB_TOKEN_ENDPOINT": {
"description": "The token endpoint to verify the micropub token against. See: https://indieweb.org/token-endpoint",
"required": true,
"value": "https://tokens.indieauth.com/token"
},
"MICROPUB_TOKEN_ME": {
"description": "Your personal domain name that the micropub token should represent. Defaults to site URL.",
"required": false
},
"MICROPUB_OPTION_DERIVE_LANGUAGES": {
"description": "A comma separated list of languages to autodetect. Eg: eng,swe",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}