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