8 lines
169 B
Elixir
8 lines
169 B
Elixir
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# Single-node by default (no distributed Erlang)
|
||
|
|
export RELEASE_DISTRIBUTION=none
|
||
|
|
|
||
|
|
# Writable temp dir for the BEAM
|
||
|
|
export RELEASE_TMP="${RELEASE_TMP:-/tmp}"
|