mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
8 lines
223 B
Bash
Executable File
8 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$WAKAPI_DB_TYPE" == "sqlite3" ] || [ "$WAKAPI_DB_TYPE" == "" ]; then
|
|
./wakapi
|
|
else
|
|
echo "Waiting for database to come up"
|
|
./wait-for-it.sh "$WAKAPI_DB_HOST:$WAKAPI_DB_PORT" -s -t 60 -- ./wakapi
|
|
fi |