mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-29 16:07:40 +01:00
8 lines
169 B
Plaintext
8 lines
169 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -euo pipefail
|
|
export PYTHONPATH=/app
|
|
bashio::net.wait_for 5001 127.0.0.1 300
|
|
cd /app
|
|
exec python3 -m core.api
|