mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 17:31:03 +01:00
12 lines
212 B
Bash
Executable File
12 lines
212 B
Bash
Executable File
#!/usr/bin/env bashio
|
|
|
|
bashio::log.info "Starting Immich Frame"
|
|
|
|
mkdir -p /config/Config
|
|
if [ -f /app/Config ]; then
|
|
rm -r /app/Config
|
|
fi
|
|
ln -sf /app/Config /config/Config
|
|
|
|
exec dotnet ImmichFrame.WebApi.dll
|