21 lines
666 B
Plaintext
21 lines
666 B
Plaintext
#!/bin/sh
|
|
|
|
# Sets and enables heart (recommended only in daemon mode)
|
|
# case $RELEASE_COMMAND in
|
|
# daemon*)
|
|
# HEART_COMMAND="$RELEASE_ROOT/bin/$RELEASE_NAME $RELEASE_COMMAND"
|
|
# export HEART_COMMAND
|
|
# export ELIXIR_ERL_OPTIONS="-heart"
|
|
# ;;
|
|
# *)
|
|
# ;;
|
|
# esac
|
|
|
|
# Set the release to work across nodes. If using the long name format like
|
|
# the one below (my_app@127.0.0.1), you need to also uncomment the
|
|
# RELEASE_DISTRIBUTION variable below. Must be "sname", "name" or "none".
|
|
ip=$(grep fly-local-6pn /etc/hosts | cut -f 1)
|
|
export RELEASE_DISTRIBUTION=name
|
|
export RELEASE_NODE=$FLY_APP_NAME@$ip
|
|
export ELIXIR_ERL_OPTIONS="-proto_dist inet6_tcp"
|