From 2faca32427d27b3807a6d815d1b2831afba51a1b Mon Sep 17 00:00:00 2001 From: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Date: Fri, 6 Oct 2023 11:06:34 +0530 Subject: [PATCH] fix: add gitpod configuration --- .gitpod.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index b5ab15cb7..9bfc333db 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,12 +1,13 @@ tasks: - init: | + npm i && + npm run dx:up && cp .env.example .env && set -a; source .env && - npm run dx && sed -i -e "s|http://localhost:3000|$(gp url 3000)|" .env \ -e "s|http://localhost:3001|$(gp url 3001)|" .env \ -e "s|http://localhost:9000|$(gp url 9000)|" .env - command: npm run dev + command: npm run d ports: - port: 3000 @@ -38,3 +39,6 @@ github: vscode: extensions: - bradlc.vscode-tailwindcss + - esbenp.prettier-vscode + - Prisma.prisma +