Saturn
Saturn copied to clipboard
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
I was unable to build the Docs, first with the devcontainer where only dotnet5 is installed, because it requires an installed dotnet3 sdk. Afterwards when trying it locally with an...
## Problem I am trying `use_grpc` with [ReflectionServiceImpl](https://github.com/grpc/grpc/blob/master/src/csharp/Grpc.Reflection/ReflectionServiceImpl.cs). It fails with the following exception: ``` Grpc.AspNetCore.Server.ServerCallHandler[6] Error when executing service method 'ServerReflectionInfo'. System.InvalidOperationException: Multiple constructors accepting all given argument types...
When use `use_grpc` a lot of times, the `configureApp` is added more times in appConfig making multiples sercices dont work corretly. Now `configureApp` is inserted only once. Fix #304
CEs element or other configuration parts requiring IWebHostEnvironment instances can have access to it, for example ```fsharp [] member this.CustomBootstrap (state : ApplicationState) = let service (services : IServiceCollection) =...
I am trying to have WebHostEnvironment during configure services, but i don't figure out how to do it. if i do it in this "tricky way" i think the order...
I was talking to Mathias today and we discovered that he had multiple calls to `use_router` in his application, so only the second one was being processed. We should look...
Hi, I was trying the new [EndpointRouter](https://saturnframework.org/explanations/endpoint-routing.html) routing and I think to have found a bug. It occurs when you try to cover under jwt authentication a sub router. Code...
Investigate abstraction for creating GraphQL instead of REST-ish controllers.
Based from sample [here](https://github.com/SaturnFramework/Saturn/tree/master/sample/gRpcSample) Add someone new service ```fsharp let app = application { no_router listen_local 10042 (fun opts -> opts.Protocols
NB - question copied from [this SO question](https://stackoverflow.com/questions/60798491/using-the-saturn-framework-how-can-i-get-a-reference-to-the-websockets-hub-outs), as I would also like to know. I'm building an application for a toy problem to learn more about SAFE. I have...