-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
39 lines (35 loc) · 862 Bytes
/
settings.js
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
module.exports = {
// Twitter
consumerKey: ''
, consumerSecret: ''
, accessToken: ''
, accessTokenSecret: ''
, callbackDomain: ''
// Poller
// Search text
, search: '#nodejs OR Node.js'
// Stream filter
, stream: '#nodejs,Node.js'
// Wait time between Search API calls checking for new Tweets (seconds)
, pollInterval: 60
// Should the poller filter Tweets which appear to be RTs?
, filterRTs: true
// Redis
, redisPort: 6379
, redisHost: '127.0.0.1'
, redisDatabase: 0
// Password, or false if auth is nor required
, redisAuth: false
// Express
, sessionSecret: ''
, port: 3000
// Frontend
// Number of Tweets per page
, tweetsPerPage: 50
// (true) Use infinite scrolling
// (false) Show the More Tweets bar
, infiniteScroll: false
// (true) Automatically display new Tweets
// (false) Show the New Tweets bar
, autoDisplayNew: true
}