major rework

This commit is contained in:
2025-04-07 19:58:52 +04:00
parent 1f8f45af8e
commit a5fa9ca080
20 changed files with 3788 additions and 576 deletions

10
process-compose.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
processes = {
frontend = {
command = ''
RUST_LOG=debug ${pkgs.cargo-watch}/bin/cargo-watch -x 'run'
'';
};
};
}