tweetcast/server-nodejs/conf.js
author Raphael Velt <raph.velt@gmail.com>
Tue, 14 Feb 2012 14:22:15 +0100
changeset 512 8d2fcfbc2fd9
parent 410 bf5cf5a9e737
permissions -rw-r--r--
Added tag V01.36 for changeset 3e6163b7764c

/* 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"
            }
        }
    }