Bradley Beddoes
Bradley Beddoes
Review all Gotham logging and revisit both the messaging and selected levels. Additionally add logging where currently deficient as part of this ticket.
Must support: * application/x-www-form-urlencoded * multipart/form-data * text/plain (?) Per other extractors for Request path and Query string, we've already shipped this must be type safe and support optional fields.
Some good ideas of how to relate to express in this article by @mike-engel that we could... "borrow" https://mike-engel.com/writing/router-composition-in-gotham.
It would be nice to automate some of the core developer activities around Gotham projects. Creating a `Middleware`, initiating a new web-app, adding a `Controller` all come to mind, there...
We currently have an [in memory session backend](https://github.com/gotham-rs/gotham/blob/f1cc16fefd5f79261362cd245d4c06463bb0366f/src/middleware/session/backend/memory.rs) which is very useful for proving out basic use cases and initial deployments but isn't suitable for larger deployments i.e. with multiple...
We're going to trial using this issue as a place for the community to discuss the roadmap for the Gotham web framework. Where we can we'll split out directions that...
This would be quite useful as a cargo sub command (this is an area we should explore for Gotham more widely) to easily allow developers to digest the set of...
Our Router implementation should be able to intelligently provide this detail for controllers, views etc to prevent breakage when restructuring occurs. Absolute and relative helpers should be supported.
Thanks for the great work on watchexec. Just wanted to leave a future feature request to support loading matches from a config file, essentially the way Guard works (https://github.com/guard/guard/wiki/Guardfile-examples). This...