-
I've come across MoonZoon (https://github.com/MoonZoon/MoonZoon) which seems like an interesting full stack framework, but I'm wondering about a solution that would allow choosing both frontend and backend frameworks.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
For my project, FeoBlog (https://github.com/nfnitloop/feoblog/). I use https://crates.io/crates/rust-embed to embed static files in the built binary.
-
rust-embed
Discontinued Rust Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
They even accepted one of my feature requests to add some file metadata which makes doing this kind of thing easier: https://github.com/pyros2097/rust-embed/issues/140
-
Funny, I did exactly this with a rocket backend and a yew frontend a while ago. I use the cargo xtask pattern for this. More information in my repository.