mirror of
https://github.com/home-assistant/frontend.git
synced 2026-08-17 10:32:44 +01:00
* Dont open demo * Scripts to run script/develop* * Scripts for dev demo and gallery * Background wrapper for agents with `--background` * Background `yarn dev` and `dev:serve` for agents * Dedupe lifecycle functions * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
11 lines
250 B
Bash
Executable File
11 lines
250 B
Bash
Executable File
#!/bin/sh
|
|
# Develop the demo. Pass --background/--status/--stop/--logs to manage a
|
|
# detached instance (see build-scripts/dev-server.mjs).
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
exec node build-scripts/dev-server.mjs --suite demo "$@"
|