-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.02 KB
/
Copy pathapp.json
File metadata and controls
46 lines (46 loc) · 1.02 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
{
"name": "Apache Kafka on Heroku Demo",
"description": "Twitter Streaming with Kafka",
"keywords": [
"kafka",
"node",
"twitter"
],
"website": "https://www.heroku.com/kafka",
"env": {
"CONSUMER_KEY": {
"description": "Replace your Twitter App's Consumer key"
},
"CONSUMER_SECRET": {
"description": "Replace your Twitter App's Consumer secret"
},
"ACCESS_TOKEN": {
"description": "Replace your Twitter App's Access token"
},
"ACCESS_TOKEN_SECRET": {
"description": "Replace your Twitter App's Access token secret"
},
"KAFKA_TOPIC": {
"description": ""
},
"DRAIN_TWEETS": {
"description": "Set 1 for drain tweets to log",
"value": "0"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run",
"value": "5"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "Standard-1X"
},
"worker": {
"quantity": 0,
"size": "Standard-1X"
}
},
"image": "heroku/node"
}