-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.03 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
{
"name": "nginx-heroku-container-supervisor",
"description": "Nginx template with supervisor using Docker for Heroku",
"repository": "https://github.com/natemacs",
"logo": "https://upload.wikimedia.org/wikipedia/commons/c/c5/Nginx_logo.svg",
"keywords": [ "nginx", "heroku", "container", "supervisor", "template" ],
"stack": "container",
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "5"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-1x"
}
},
"addons": [
"openredis",
{
"plan": "mongolab:shared-single-small",
"as": "MONGO"
},
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"environments": {
"development": {
"scripts": {
}
},
"production": {
"scripts": {
}
}
}
}