From 9dbf1f146e2d9c105a2c82013e6963fdd3441e97 Mon Sep 17 00:00:00 2001 From: Abdullah Al Amin Date: Wed, 2 Aug 2023 13:37:37 +0200 Subject: [PATCH] fix: correct gitpod install comands for api (#9) Co-authored-by: Anbraten --- .gitpod.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 7fbd2e5..e26615b 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,6 +2,8 @@ image: gitpod/workspace-full-vnc:latest tasks: - name: Setup + env: + NUXT_TELEMETRY_DISABLED: '0' before: | nvm install 20 nvm use 20 @@ -21,9 +23,11 @@ tasks: nvm use default command: | pnpm start - - name: Run backend + + - name: Run API before: | gp sync-await setup + pip install -r requirements.txt command: | uvicorn pyserver:app --reload --app-dir=ai @@ -36,7 +40,7 @@ vscode: ports: - name: App - port: 5137 + port: 3000 - name: API - port: 8080 + port: 8000 onOpen: ignore