4 lines
176 B
Text
4 lines
176 B
Text
#!/usr/bin/with-contenv bashio
|
|
IMG_DIR="$(bashio::config 'image_path')"
|
|
bashio::log.info "Starting image server..."
|
|
python -m http.server 8080 --directory $IMG_DIR 2>/dev/null
|