mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-09 09:05:26 +00:00
Fix app and docs start directory (#1239)
This commit is contained in:
parent
5da5580cba
commit
5365d51b12
1 changed files with 9 additions and 5 deletions
14
.gitpod.yml
14
.gitpod.yml
|
@ -43,16 +43,20 @@ tasks:
|
||||||
gp sync-done gitea
|
gp sync-done gitea
|
||||||
$DOCKER_COMPOSE_CMD logs -f
|
$DOCKER_COMPOSE_CMD logs -f
|
||||||
- name: App
|
- name: App
|
||||||
init: |
|
before: |
|
||||||
cd web/
|
cd web/
|
||||||
yarn install
|
|
||||||
command: yarn start
|
|
||||||
- name: Docs
|
|
||||||
init: |
|
init: |
|
||||||
|
yarn install
|
||||||
|
command: |
|
||||||
|
yarn start
|
||||||
|
- name: Docs
|
||||||
|
before: |
|
||||||
cd docs/
|
cd docs/
|
||||||
|
init: |
|
||||||
yarn install
|
yarn install
|
||||||
yarn build:woodpecker-plugins
|
yarn build:woodpecker-plugins
|
||||||
command: yarn start --port 4000
|
command: |
|
||||||
|
yarn start --port 4000
|
||||||
|
|
||||||
ports:
|
ports:
|
||||||
- port: 3000
|
- port: 3000
|
||||||
|
|
Loading…
Reference in a new issue