forked from heroku-examples/node-articles-nlp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
39 lines (39 loc) · 1.02 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
{
"name": "Node-Articles-NLP-Redis-Queue",
"description": "An Express 4 app that works all the way into production",
"website": "https://github.com/cwjohan/node-articles-nlp-redis-queue",
"repository": "https://github.com/cwjohan/node-articles-nlp-redis-queue",
"logo": "https://node-js-sample.herokuapp.com/node.svg",
"success_url": "/",
"keywords": [
"node",
"express",
"production"
],
"scripts": {
"postdeploy": "echo 'restarting'"
},
"addons": [
"mongohq",
"rediscloud"
],
"env": {
"THRIFTY": {
"description": "run on a single (free) dyno",
"value": "true"
},
"COOKIE_SECRET": {
"description": "a secret key for signed cookies",
"generator": "secret"
},
"BLITZ_KEY": {
"description": "authorization key for blitz.io load testing (optional)",
"value": "",
"required": false
},
"QUEUE_CONFIG_FILE": {
"description": "location of config for node-redis-queue",
"value": "/app/redis-queue-config.json"
}
}
}