Just your basic ass, Starbucks drinking, social-media-consuming next-gen entitlements software
- Starting Cassandra:
docker run --name cassandra-test -d -p 9042:9042 cassandra:latest # first time
docker start cassandra-test
- Running Cassandra commands:
Drop directly into the cassandra shell:
docker exec -it cassandra-test cqlsh
Alternatively, you can run a bash prompt with:
docker exec -it cassandra-test bash
- Start server locally by issuing
sbt run
in theserver/
directory. On the first run, the graph must be setup. Enable set up mode by setting the environment variableSETUP_MODE
totrue
(defaults tofalse
).