From 1f78bddf11ded1944954bbafe6d49700a116f206 Mon Sep 17 00:00:00 2001 From: boris Date: Wed, 20 Sep 2023 21:07:51 +0800 Subject: [PATCH] Use the correct command to run the app in `GitPod` --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index d1b8f3b..b3c8ea0 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -8,7 +8,7 @@ tasks: command: redis-server --port 8082 - name: Run The App init: cargo build - command: PKG_ENV=dev ./target/release/websurfx + command: PKG_ENV=dev ./target/debug/websurfx - name: Tests command: cargo test - name: Clippy Checks