mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-25 17:28:05 +00:00
9 lines
124 B
Bash
9 lines
124 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "-- Running migrations..."
|
||
|
/bin/mobilizon_ctl migrate
|
||
|
|
||
|
echo "-- Starting!"
|
||
|
exec /bin/mobilizon start
|