-
Notifications
You must be signed in to change notification settings - Fork 67
/
app.json
40 lines (36 loc) · 980 Bytes
/
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
{
"name": "listmonk",
"description": "Self-hosted newsletter + mailing list manager",
"repository": "https://github.com/knadh/listmonk-heroku",
"logo": "https://listmonk.app/static/images/listmonk.svg",
"website": "https://listmonk.app",
"keywords": ["emails", "newsletter", "mailing-list"],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "https://github.com/knadh/listmonk-heroku"
}
],
"addons": ["heroku-postgresql"],
"env": {
"ROOT_URL": {
"description": "URL of the installation",
"required": true,
"value": "https://yourlistmonk.herokuapp.com"
},
"LISTMONK_APP__ADMIN_USERNAME": {
"description": "Admin username",
"required": true
},
"LISTMONK_APP__ADMIN_PASSWORD": {
"description": "Admin password",
"required": true
}
},
"scripts": {
"postdeploy": "./install-db.sh"
},
"success_url": "/admin/settings"
}