This commit is contained in:
2025-08-26 10:52:28 +04:00
commit c44751a91e
10 changed files with 1612 additions and 0 deletions

10
process-compose.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
processes = {
backend = {
command = ''
${pkgs.watchexec}/bin/watchexec --restart -w Cargo.toml -w Cargo.lock -- cargo run
'';
};
};
}