tweetcast/server-nodejs/conf.js
author Raphael Velt <raph.velt@gmail.com>
Tue, 14 Feb 2012 14:17:43 +0100
changeset 506 f7fd2458fc5c
parent 410 bf5cf5a9e737
permissions -rw-r--r--
Added museo 14.02.12 and several corrections

/* CONFIGURATION FILE USED BY BOTH CLIENT AND SERVER */

RECORD_NEW_TWEETS = false;
STANDALONE_APP = true;

var app_port = 8000,
    tracking_keywords = [ "sarkozy" ],
    annotations = {
        "default" : {
            "colors" : {
                "tweet" : "#ffffff",
                "timeline" : "#585858"
            }
        },
        "positive" : {
            "keywords" : [ /\+\+/ ],
            "colors" : {
                "tweet" : "#c5e7cd",
                "timeline" : "#1D973D"
            }
        },
        "negative" : {
            "keywords" : [ /\-\-/ ],
            "colors" : {
                "tweet" : "#f6ced0",
                "timeline" : "#CE0A15"
            }
        },
        "reference" : {
            "keywords" : [ /\=\=/ ],
            "colors" : {
                "tweet" : "#ecedc1",
                "timeline" : "#C5A62D"
            }
        },
        "question" : {
            "keywords" : [ /\?\?/ ],
            "colors" : {
                "tweet" : "#bfdbec",
                "timeline" : "#036AAE"
            }
        }
    }