-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
80 lines (80 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Super Node Starter",
"description": "a nodejs starter template for deploying node based api servers",
"image": "heroku/nodejs",
"keywords": [
"node",
"es6",
"es7",
"javascript",
"typescript",
"template",
"starter",
"graphql"
],
"website": "https://github.com/stephn-r/super-node-starter",
"repository": "https://github.com/stephn-r/super-node-starter",
"success_url": "/",
"env": {
"BCRYPT_SALT": {
"description": "The password salt to use when running bcrypt-nodejs encryptions",
"generator": "secret",
"required": true
},
"CORS": {
"description": "Allowed URLs for Cross Origin Resource Sharing",
"value": "*",
"required": true
},
"DATABASE_ENGINE": {
"description": "Used by sequelize to determine which dialect to use",
"value": "postgres",
"require": true
},
"DATABASE_POOL_IDLE": {
"description": "Used by sequelize to specify the idle time of the database",
"value": "0",
"require": true
},
"DATABASE_POOL_MAX": {
"description": "Used by sequelize to control how many database connections to manage",
"value": "10",
"require": true
},
"DATABASE_POOL_MIN": {
"description": "Used by sequelize to control how many database connections to manage",
"value": "2",
"require": true
},
"DATABASE_SSL": {
"description": "Using SSL on Database connector",
"value": "false",
"require": true
},
"LOGGING_LEVEL": {
"description": "Level of Winston Logger to enable (e.g. info, debug, warn, error)",
"value": "debug",
"require": true
},
"NODE_ENV": {
"description": "The environment to execute Node on",
"value": "staging",
"required": true
},
"SECRET": {
"description": "Secret token used in constructing secure sessions",
"generator": "secret",
"require": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"papertrail:choklad"
]
}