mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
11 lines
219 B
Bash
11 lines
219 B
Bash
#!/command/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
bashio::log.info "Creating folders"
|
|
mkdir -p /config/library
|
|
|
|
bashio::log.info "Starting app..."
|
|
yarn prisma migrate deploy
|
|
yarn start docker-entrypoint.sh
|