mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-17 09:58:16 +01:00
12 lines
324 B
Bash
Executable File
12 lines
324 B
Bash
Executable File
#!/usr/bin/env bashio
|
|
# shellcheck shell=bash
|
|
set -euo pipefail
|
|
|
|
bashio::log.warning "Warning - minimum configuration recommended: 2 CPU cores and 4 GB of memory. Otherwise the system may become unresponsive or crash."
|
|
|
|
##############
|
|
# LAUNCH APP #
|
|
##############
|
|
|
|
exec /usr/bin/dumb-init -- python -u /app/flaresolverr.py
|