tweetcast/nodejs/conf.js
changeset 404 89968844eb7d
parent 403 dd1686ae5506
child 405 6626b728b142
equal deleted inserted replaced
403:dd1686ae5506 404:89968844eb7d
     1 /* CONFIGURATION FILE USED BY BOTH CLIENT AND SERVER */
       
     2 
       
     3 var app_port = 8000,
       
     4     tracking_keyword = "Obama,Bieber",
       
     5     annotations = {
       
     6         "default" : {
       
     7             "colors" : {
       
     8                 "tweet" : "#ffffff",
       
     9                 "timeline" : "#585858"
       
    10             }
       
    11         },
       
    12         "positive" : {
       
    13             "keywords" : [ /\+\+/ ],
       
    14             "colors" : {
       
    15                 "tweet" : "#c5e7cd",
       
    16                 "timeline" : "#1D973D"
       
    17             }
       
    18         },
       
    19         "negative" : {
       
    20             "keywords" : [ /\-\-/ ],
       
    21             "colors" : {
       
    22                 "tweet" : "#f6ced0",
       
    23                 "timeline" : "#CE0A15"
       
    24             }
       
    25         },
       
    26         "reference" : {
       
    27             "keywords" : [ /\=\=/ ],
       
    28             "colors" : {
       
    29                 "tweet" : "#ecedc1",
       
    30                 "timeline" : "#C5A62D"
       
    31             }
       
    32         },
       
    33         "question" : {
       
    34             "keywords" : [ /\?\?/ ],
       
    35             "colors" : {
       
    36                 "tweet" : "#bfdbec",
       
    37                 "timeline" : "#036AAE"
       
    38             }
       
    39         }
       
    40     }