aboutsummaryrefslogtreecommitdiffstats
path: root/config/settings.yml.example
blob: c96040a247b06f3eb6aa961ede1fbf61c1359c9f (plain)
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
47
48
49
50
51
default: &default
  base_url:           "http://example.com/" # base url
  
  collector:
    server_port:      42106
    secret_key:       "secret key to authorize workers"
    count:            1 # workers count
    consumer_version: 0 # which consumer (0..)
    consumer:
      - key:          "consumer key of collector (register)"
        secret:       "consumer secret"
      - key:          "if change consumer key"
        secret:       
  
  notification:
    enabled:          false
    consumer:
      key:            "consumer key of notification account"
      secret:         "consumer secret"
    token:
      - token:        "access token of notification account"
        secret:       "access token secret"
    favorites:
      - 50
      - 100
      - 250
  
  tweets:
    count_default:    10
    count_max:        100
    users:
      count_default:  20
      count_lot:      100
  
  user_ranking:
    count:            50

development:
  <<: *default

test:
  <<: *default
  collector:
    consumer_version: 0
    consumer:
      - key:          "JVkX2Uy0Qtigsh0GiG5Lw"
        secret:       "vfkPvOkzKUGuZ4xKtFAVvlAKoL3u2grxchuQEBvE"

production:
  <<: *default