mirror of
https://github.com/hassio-addons/addon-uptime-kuma.git
synced 2025-05-03 18:41:21 +00:00
12 lines
473 B
Text
Executable file
12 lines
473 B
Text
Executable file
#!/command/with-contenv bashio
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Uptime Kuma
|
|
# Starts Uptime Kuma
|
|
# ==============================================================================
|
|
export NODE_PATH=/opt/node_modules
|
|
|
|
cd /opt/uptime-kuma || bashio::exit.nok "Could not change directory to Uptime Kume"
|
|
|
|
bashio::log.info "Starting Uptime Kuma..."
|
|
|
|
exec node server/server.js --data-dir="/data/"
|