pleroma-docker/entrypoint.sh

26 lines
450 B
Bash
Raw Normal View History

2018-08-20 17:06:34 -04:00
#!/bin/bash
set -e
set -x
if [[ -z "$NO_CONFIG" ]]; then
ruby /conf/parser.rb /conf/config.yml > config/runtime-config.exs
fi
2018-12-24 17:20:17 -05:00
if [[ -n "$COMPILE_ONLY" ]]; then
2018-12-24 17:20:17 -05:00
mix deps.get
mix compile
exit 0
2018-12-24 17:20:17 -05:00
fi
# Assume that dependencies are compiled and ready to go.
# Remove this assumption when https://github.com/erlang/rebar3/issues/1627 is fixed.
mix compile
2018-12-24 17:20:17 -05:00
# Migrate db
2018-08-20 17:06:34 -04:00
mix ecto.create
mix ecto.migrate
2018-12-24 17:20:17 -05:00
# Off we go!
2018-08-20 17:06:34 -04:00
exec mix phx.server