pleroma/rel/pleroma_ctl

20 lines
779 B
Plaintext
Raw Normal View History

2019-06-08 14:15:49 +00:00
#!/bin/sh
# XXX: This should be removed when elixir's releases get custom command support
2019-06-09 10:33:44 +00:00
if [ -z "$1" ] || [ "$1" == "help" ]; then
echo "Usage: $(basename "$0") COMMAND [ARGS]
The known commands are:
create Create database schema (needs to be executed only once)
migrate Execute database migrations (needs to be done after updates)
rollback [VERSION] Rollback database migrations (needs to be done before downgrading)
2019-06-09 10:33:44 +00:00
and any mix tasks under Pleroma namespace, for example \`mix pleroma.user COMMAND\` is
equialent to \`$(basename "$0") user COMMAND\`
"
else
SCRIPT=$(readlink -f "$0")
SCRIPTPATH=$(dirname "$SCRIPT")
$SCRIPTPATH/pleroma eval 'Pleroma.ReleaseTasks.run("'"$*"'")'
fi