mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 10:28:33 -07:00
21 lines
375 B
Bash
21 lines
375 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -z "$ZIGBEE2MQTT_DATA" ]; then
|
|
DATA="$ZIGBEE2MQTT_DATA"
|
|
else
|
|
DATA="/app/data"
|
|
fi
|
|
|
|
echo "Using '$DATA' as data directory"
|
|
|
|
if [ ! -f "$DATA/configuration.yaml" ]; then
|
|
echo "Creating configuration file..."
|
|
cp /app/configuration.yaml "$DATA/configuration.yaml"
|
|
fi
|
|
|
|
if [ ! -z "$DEBUG" ]; then
|
|
npm start
|
|
else
|
|
DEBUG="$DEBUG" npm start
|
|
fi
|