From 5365d51b128aa4d860c7e5f9d784d30865b7970e Mon Sep 17 00:00:00 2001 From: Lukas Date: Sat, 8 Oct 2022 01:03:13 +0200 Subject: [PATCH] Fix app and docs start directory (#1239) --- .gitpod.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 2d3592f4e..8bf9a2207 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -43,16 +43,20 @@ tasks: gp sync-done gitea $DOCKER_COMPOSE_CMD logs -f - name: App - init: | + before: | cd web/ - yarn install - command: yarn start - - name: Docs init: | + yarn install + command: | + yarn start + - name: Docs + before: | cd docs/ + init: | yarn install yarn build:woodpecker-plugins - command: yarn start --port 4000 + command: | + yarn start --port 4000 ports: - port: 3000