Local copy of Pleroma, an ActivityPub server software. Contains modifications running live on fedi.underscore.world
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/ash |
|
|
|
set -e |
|
|
|
echo "-- Waiting for database..." |
|
while ! pg_isready -U ${DB_USER:-pleroma} -d postgres://${DB_HOST:-db}:5432/${DB_NAME:-pleroma} -t 1; do |
|
sleep 1s |
|
done |
|
|
|
echo "-- Running migrations..." |
|
$HOME/bin/pleroma_ctl migrate |
|
|
|
echo "-- Starting!" |
|
exec $HOME/bin/pleroma start
|
|
|