mirror of
https://github.com/Roslund/meshtastic-map.git
synced 2026-03-28 17:43:03 +01:00
11 lines
163 B
Bash
Executable File
11 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Waiting for mysql"
|
|
/wait || exit 111
|
|
|
|
echo "Running migrations"
|
|
npx prisma migrate dev
|
|
|
|
echo "Starting map ui"
|
|
exec node src/index.js ${MAP_OPTS}
|