mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-27 22:40:49 +00:00
16 lines
492 B
YAML
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"
|