sudo cassandra -f &
sudo nano etc/cassandra/cassandra-env.sh
cassandra-cli
create keyspace Evaluator;
use Evaluator;
create column family users with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type;
create column family questions with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type;
create column family time with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type;
create column family pages with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type;
create column family informations with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type;
create column family files with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type;
create column family accespermission with comparator=UTF8Type and default_validation_class=UTF8Type and key_validation_class=UTF8Type;
cd play-scala-starter-example Run this using sbt. If you downloaded this project from http://www.playframework.com/download then you'll find a prepackaged version of sbt in the project directory:
sbt run
And then go to http://localhost:9000 to see the running web application.