mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-19 19:07:23 +00:00
10 lines
136 B
Bash
Executable File
10 lines
136 B
Bash
Executable File
#!/bin/sh
|
|
# Run the frontend development server
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./node_modules/.bin/gulp develop-app
|