-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathapp.json
44 lines (44 loc) · 1.82 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
{
"name": "Scrapyd app (via pip, stable)",
"description": "How to set up Scrapyd cluster on Heroku",
"repository": "https://github.com/my8100/scrapyd-cluster-on-heroku",
"logo": "https://raw.githubusercontent.com/my8100/files/master/scrapydweb/icons/fav.png",
"keywords": ["scrapyd", "cluster", "heroku", "scrapy", "scrapyweb", "python", "web-crawling", "web-scraping"],
"env": {
"TZ": {
"description": "Timezone of the app, get it via: python -c \"import tzlocal; print(tzlocal.get_localzone())\"",
"value": "UTC",
"required": false
},
"REDIS_HOST": {
"description": "Optional, see settings.py in the scrapy_redis_demo_project.zip",
"value": "localhost",
"required": false
},
"REDIS_PORT": {
"description": "Optional, see settings.py in the scrapy_redis_demo_project.zip",
"value": "6379",
"required": false
},
"REDIS_PASSWORD": {
"description": "Optional, see settings.py in the scrapy_redis_demo_project.zip",
"value": "password",
"required": false
},
"PARSE_ROUND_INTERVAL": {
"description": "LogParser would sleep N seconds before starting next round of parsing, the default is 10.",
"value": "10",
"required": false
},
"ENABLE_TELNET": {
"description": "Whether to let LogParser collect Crawler.stats and Crawler.engine via telnet, the default is True.",
"value": "True",
"required": false
},
"VERBOSE": {
"description": "The default is False, set it to True to change the logging level of LogParser from WARNING to DEBUG.",
"value": "False",
"required": false
}
}
}