From 23864c01c104531a1b3cd0af76c11c23725f0cd2 Mon Sep 17 00:00:00 2001 From: alamin655 <129589283+alamin655@users.noreply.github.com> Date: Sun, 6 Aug 2023 21:13:28 +0530 Subject: [PATCH] Update .gitpod.yml --- .gitpod.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index e82d97a..d1b8f3b 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -4,9 +4,15 @@ image: # Commands that will run on workspace start tasks: - - name: Build & Deploy - init: cargo build -r - command: redis-server --port 8082 & ./target/release/websurfx + - name: Start Redis Server + command: redis-server --port 8082 + - name: Run The App + init: cargo build + command: PKG_ENV=dev ./target/release/websurfx + - name: Tests + command: cargo test + - name: Clippy Checks + command: cargo clippy # vscode IDE setup vscode: @@ -32,6 +38,7 @@ vscode: - hbenl.test-adapter-converter - hbenl.vscode-test-explorer - eamodio.gitlens + github: prebuilds: master: true