I just got RavenDB to work. I realised I have to start RavenDB\packages\RavenDB.1.0.573\server.exe to access it in my application via:
DocumentStore store = new DocumentStore()
{
Url = "http://localhost:8080"
};
store.Initialize();
Is there a tool to view the data in the database similar to SQL Server Management Studio?