From c2994a818f5036de9ecf13a139ab2f6424ecbc4b Mon Sep 17 00:00:00 2001 From: piny4man Date: Sun, 7 Jul 2024 18:55:41 +0200 Subject: [PATCH] fix: api dev make action --- Makefile.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index 1845eaa..655f2d9 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -1,8 +1,10 @@ [tasks.dev] workspace = false -env = { "RUST_LOG" = "trace" } -command = "cargo" -args = ["run"] +script_runner = "@shell" +script = ''' +cd api +cargo run +''' [tasks.serve] workspace = false