Vinney Kelly
Vinney Kelly

Reputation: 5095

Unable to run Raven Studio from ASP.NET 5 web application

I have created a new web application using ASP.NET 5 RC1 with RavenDb. I am having trouble determining how to bring up the Raven Studio web client. In Chrome, I can see the following JSON response:

{
   "Message": "The following embedded file was not available: index.html. Please make sure that the Raven.Studio.Html5.zip file exist in the main directory (near to the Raven.Database.dll)."
}

Seems straight forward, however, this presents two issues. First, I don't find the specified zip file in my project anywhere nor have I been able to find it in the RavenDb GitHub repo or anywhere else on the web. Additionally, since ASP.NET vNext has a drastically different approach to project organization, I am not sure how this requirement translates. Any guidance would be greatly appreciated.

Upvotes: 1

Views: 303

Answers (1)

Vinney Kelly
Vinney Kelly

Reputation: 5095

Success! In order to get Raven Studio working with an ASP.NET 5 project, you need to put the Raven.Studio.Html5.zip file in the wwwroot directory.

Upvotes: 2

Related Questions