-
Notifications
You must be signed in to change notification settings - Fork 3
/
scalingo.json
43 lines (43 loc) · 1.05 KB
/
scalingo.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
{
"name": "Node.js Redis demo",
"description": "A demo setup for using Redis to handle session in Node.js",
"logo": "https://cdn.jsdelivr.net/gh/heroku/node-js-getting-started@master/public/node.svg",
"repository": "https://github.com/velizarn/redis-demo.git",
"env": {
"CACHE_TTL": {
"description": "TTL for session, in seconds",
"value": "3600",
"required": true
},
"LOG_LEVEL": {
"value": "info"
},
"TZ": {
"description": "Set time zone for your application",
"value": "Europe/Sofia"
},
"VERIFICATION_CONTENT": {
"description": "Verification file content (loader.io)",
"value": "",
"required": false
},
"VERIFICATION_URI": {
"description": "Verification file endpoint (loader.io)",
"value": "",
"required": false
},
"WEB_CONCURRENCY": {
"value": "2"
}
},
"addons": ["redis:redis-sandbox"],
"scripts": {
"first-deploy": "echo 'first deployment'"
},
"formation": {
"web": {
"amount": 1,
"size": "S"
}
}
}