|
|
|
|
|
by yawn
1693 days ago
|
|
> are you really stopping the server, compiling again, run the full server when doing changes the logic for the server? Yes. I use something like `cargo watch -x run -w templates` for my personal project. If I make a change to any source file, this command will recompile my project, then restart the web framework's (Tide currently) http server. It also watches changes to the templates (Tera, which is like Jinja2). It's not nearly as fast as some of the dynamic language reloading I've used in other languages/frameworks, but it works and I can move pretty quickly this way. |
|