mirror of
https://github.com/home-assistant/supervisor.git
synced 2026-05-26 09:35:11 +01:00
1196788856
* Add CoreDNS / DNS configuration * Support get version * add version * add coresys * Add more logic * move forwareder into dns * Setup docker inside * add docker to env * Add more function * more interface * Update hosts template * Add DNS folder * Fix issues * Add more logic * Add handling for hosts * Fix setting * fix lint * Fix some issues * Fix issue * Run with no cache * Fix issue on validate * Fix bug * Allow to jump into dev mode * Fix permission * Fix issue * Add dns search * Add watchdog * Fix set issues * add API description * Add API endpoint * Add CLI support * Fix logs + add hostname * Add/remove DNS entry * Fix attribute * Fix style * Better shutdown * Remove ha from network mapping * Add more options * Fix env shutdown * Add support for new repair function * Start coreDNS faster after restart * remove options * Fix ha fix
18 lines
334 B
Bash
Executable File
18 lines
334 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Update frontend
|
|
git submodule update --init --recursive --remote
|
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
|
cd home-assistant-polymer
|
|
nvm install
|
|
script/bootstrap
|
|
|
|
# build frontend
|
|
cd hassio
|
|
./script/build_hassio
|
|
|
|
# Copy frontend
|
|
rm -f ../../hassio/api/panel/chunk.*
|
|
cp -rf build/* ../../hassio/api/panel/ |