#!/bin/sh
set -e

CONFIG="/etc/photobooth/config.yml"

# Produktionsmodus
export NODE_ENV=production

# Starte den gebauten Daemon (Paketpfad)
exec /usr/bin/node /usr/lib/photobooth/daemon/dist/index.js --config "$CONFIG"
