forked from developerforce/emote-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (34 loc) · 846 Bytes
/
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
{
"name": "emote-server",
"description": "Backend for the Emote Widget",
"website": "https://github.com/fostive/emote-server",
"repository": "https://github.com/fostive/emote-server",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"addons": ["heroku-redis:hobby-dev"],
"env": {
"RATE_LIMIT_MAX": {
"description": "Max number of requests per time window",
"value": 100
},
"RATE_LIMIT_WINDOW": {
"description": "Duration of the Rate Limit time window",
"value": "1 minute"
},
"HEARTBEAT_TIMEOUT": {
"description": "Duration of the Heartbeat",
"value": 30
},
"EVENT_ID_LENGTH": {
"description": "Max length of an Event ID",
"value": 32
},
"EVENTS_MAX": {
"description": "Max number of Event Streams",
"value": 32
}
}
}