-
Notifications
You must be signed in to change notification settings - Fork 126
/
app.json
40 lines (40 loc) · 874 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": "Lotus",
"description": "Open Source Metering, Billing and Pricing",
"website": "https://www.uselotus.io",
"repository": "https://github.com/uselotus/lotus",
"logo": "https://uploads-ssl.webflow.com/62e1ba3ad04d5942990d1f50/62e1bb93f43aa65fce59c887_Lotus-Brandmark-Logo-RGB-Black-Large%20(1).svg",
"success_url": "/admin",
"addons":[
{
"plan":"heroku-postgresql"
},
{
"plan":"heroku-redis"
}
],
"buildpacks": [
{"url": "heroku/nodejs"},
{"url": "heroku/python"}
],
"env": {
"SECRET_KEY": {
"generator": "secret"
},
"ADMIN_PASSWORD":{
"value": "password"
},
"ADMIN_USERNAME":{
"value": "admin"
},
"ADMIN_EMAIL":{
"value": "[email protected]"
},
"STRIPE_SECRET_KEY":{
"value": "1234"
}
},
"scripts":{
"postdeploy": ""
}
}