11 lines
216 B
Nix
11 lines
216 B
Nix
{ pkgs, ... }:
|
|
{
|
|
processes = {
|
|
frontend = {
|
|
command = ''
|
|
RUST_LOG=debug,sqlx=warn ${pkgs.cargo-watch}/bin/cargo-watch -i tests/src -x 'run && cat tests/src/models/user.rs'
|
|
'';
|
|
};
|
|
};
|
|
}
|