While doing development in Rust/Axum/Askana (which compiles templates at compile time) it would be very useful if the server executable could, during development:
- watch for any changes to files in its directory tree
- wait until no changes had been detected for a whole second
- run "cargo build"
- exec the new binary in place of itself, with the original environment variables and arguments
Is there already a way of doing this (on Linux) perhaps by another means?
Alternatively, perhaps there is a way of having Askana template files processed at request time during development, but still compiled into the executable for release? (I would still like to see template compilation errors during development though.)
cargo watch
seems to be what you're looking for.So you'd probably use
-x run
(or-x run -r
, and whatever additional parameters you need).And for the waiting part there is
Since it's a server, the corresponding section would probably be of interest.