I have been ableSuccess! In order to get Raven Studio runningworking with myan ASP.NET 5 web app. Though I'm not sure what wasproject, you need to put the issueRaven.Studio.Html5.zip file in my last test, here's the working combination I've discovered today:wwwroot directory.
Install RavenDB.Client, RavenDB.Database, and RavenDB.Embedded NuGet packages
From
Startupmethod in Startup.cs, include the statementRaven.Database.Server.NonAdminHttp.EnsureCanListenToWhenInNonAdminContext(8080);From the same
Startupmethod, initialize the RavenDB context. Here's what my configuration looks like:public class RavenContext : IDisposable { public static IDocumentStore DocumentStore { get; private set; } public static IDocumentStore Init() { DocumentStore = CreateEmbeddableStore(); DocumentStore.Initialize(); return DocumentStore; } public void Dispose() { DocumentStore.Dispose(); DocumentStore = null; } private static IDocumentStore CreateEmbeddableStore() { var databaseName = "ASPNET5_Test"; return new EmbeddableDocumentStore { DataDirectory = "App_Data/RavenDB", DefaultDatabase = databaseName, UseEmbeddedHttpServer = true, Conventions = BuildDocumentConvention(), Configuration = { Port = 8080 } }; } } public partial class Startup { public void Configuration(IAppBuilder app) { ConfigureAuth(app); Raven.Database.Server.NonAdminHttp.EnsureCanListenToWhenInNonAdminContext(8080); RavenContext.Init(); } }