This commit is contained in:
2025-08-26 15:28:28 +04:00
commit e022a85199
9 changed files with 2177 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
'';
};
};
}