Rocket.Chat/.gitpod/automations.yaml
2025-01-21 01:15:12 +00:00

16 lines
492 B
YAML

services:
development-server:
name: Rocket.Chat development server
description: Starts the Rocket.Chat development server (yarn dsv)
triggeredBy:
- postDevcontainerStart
- manual
commands:
start: |
yarn
yarn dsv
ready: |
export ROOT_URL=$(gitpod environment port open 3000 --name "Rocket.Chat application" | sed 's|https://||')
echo $ROOT_URL
gitpod environment port open 3000 --name "Rocket.Chat application"