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