This repository was archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
61 lines (61 loc) · 1.51 KB
/
app.json
File metadata and controls
61 lines (61 loc) · 1.51 KB
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
55
56
57
58
59
60
61
{
"name": "Open Invoice",
"description": "Open Invoice Description.",
"keywords": [
"invoices",
"payments",
"opensource"
],
"website": "https://open-invoice.co",
"repository": "https://github.com/moduloTech/open_invoice",
"logo": "https://raw.githubusercontent.com/moduloTech/open_invoice/master/app/assets/images/open_invoice/logo.svg?sanitize=true",
"success_url": "/welcome",
"scripts": {
"postdeploy": "./r.sh"
},
"env": {
"OPEN_INVOICE_APP_NAME": {
"description": "Name of you app instance.",
"value": "Open Invoice"
},
"OPEN_INVOICE_HOST": {
"description": "Host of you app. Should be set to http(s?)://<your-app-name>.herokuapp.com. Set to your custom host if you plan to have one. Example: https://open-invoice.herokuapp.com"
},
"OPEN_INVOICE_DOMAIN": {
"description": "Domain of you app. Should be set to <your-app-name>.herokuapp.com. Set to your custom domain if you plan to have one. Example: open-invoice.herokuapp.com"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
},
{
"plan": "cloudcube:free",
"as": "CLOUDCUBE"
},
{
"plan": "sendgrid:starter",
"as": "SENDGRID"
},
{
"plan": "heroku-redis:hobby-dev",
"as": "REDIS"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"stack": "heroku-18"
}