tweetcast/nodejs/conf.js
author Raphael Velt <raph.velt@gmail.com>
Wed, 30 Nov 2011 12:11:59 +0100
changeset 403 dd1686ae5506
parent 335 5f83c21dee69
permissions -rw-r--r--
minor changes

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

var app_port = 8000,
    tracking_keyword = "Obama,Bieber",
    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"
            }
        }
    }