Development Environment
Clone the "Shaper" main library from GitHub https://github.com/brayns-it/shaper
Create a new empty ASP.NET Core Project and simply call "InitializeShaper" and "MapShaperApi".
using Brayns.Shaper;
var builder = WebApplication.CreateBuilder(args);
builder.InitializeShaper();
var app = builder.Build();
app.MapShaperApi();
app.Run();
"MapShaperApi" will map two path in your web application:
- /api to serve REST request with GET, POST, PUT or DELETE method
- /rpc to serve special JSON request for the client
If you want to use also the web client (not only API) you have to clone "Shaper Web" library from GitHub https://github.com/brayns-it/shaper-web
Simply declare the web client and Web Sockets support:
app.MapShaperClient();
app.UseWebSockets();
"MapShaperClient" will catch all requests from "/client" base URI and serve the default index.html client page.
If you want to redirect also "/" path to default client page, add the following code:
app.MapShaperDefault();
Mark the ASP.NET assembly as Shaper App container within the "AssemblyInfo" file (create it if doesn't exists):
[assembly: Brayns.Shaper.Classes.AppCollection]