mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-03 02:21:38 +00:00
9 lines
174 B
Bash
9 lines
174 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -f /app/data/configuration.yaml ]; then
|
|
echo "Creating configuration file..."
|
|
cp /app/configuration.yaml /app/data/configuration.yaml
|
|
fi
|
|
|
|
npm start
|