From 5b77f854f1f98222291e3c8810f5a1109af10cc0 Mon Sep 17 00:00:00 2001 From: navin-ti Kumar Date: Tue, 25 Feb 2025 07:55:07 +0000 Subject: [PATCH] Added gitpod yml --- .gitpod.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..4711a77 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,15 @@ +tasks: + - name: run back-end + openMode: split-left + command: | + npm install pg dotenv + npm install + npm start + + - name: run front-end + openMode: split-right + command: | + cd client + npm install + echo "REACT_APP_API_URL=$(gp url 3001)" > .env + npm start \ No newline at end of file