Hey, I'm working on my own personal website that uses Ktor framework. I have few questions at this moment:
- Is it possible to add and remove routes from embedded Ktor server during runtime?
- Is it possible to wrap a servlet through Ktor server that relays the request to Ktor client that relays it to servlet? I've tried wrapping JGit HTTP servlet, but I had no luck.
- Should I consider separating a single Ktor server into frontend (providing HTML content) and backend server (providing API and authorization with MsgPack/JSON)?