Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to connect to an embedded DB with Raven Management Studio

I'm playing with Raven DB and am wondering if it's possible to connect to an embedded DB with Raven Management Studio. Has anyone ever done this?

like image 844
Ken Sykora Avatar asked Aug 04 '11 19:08

Ken Sykora


1 Answers

If I understood you correct and you mean the Web UI, you simply have to enable the embedded web server.

var documentStore = new EmbeddableDocumentStore
{
  DataDirectory = "Data",
  UseEmbeddedHttpServer = true
};

See http://ravendb.net/docs/server/deployment/embedded

Also make sure to include Raven.Studio.xap in the root of your web application

like image 164
ccellar Avatar answered Sep 23 '22 00:09

ccellar