2022-07-07 03:05:53 +08:00
|
|
|
export RELEASE_NODE=livebook_app
|
2022-01-18 00:34:38 +08:00
|
|
|
export RELEASE_MODE=interactive
|
2022-07-18 17:51:17 +08:00
|
|
|
export MIX_ARCHIVES="${RELEASE_ROOT}/vendor/archives"
|
|
|
|
export MIX_REBAR3="${RELEASE_ROOT}/vendor/rebar3"
|
2022-07-07 01:27:06 +08:00
|
|
|
export WX_MACOS_NON_GUI_APP=1
|
2022-07-18 17:51:17 +08:00
|
|
|
export LIVEBOOK_SHUTDOWN_ENABLED=true
|
2022-07-20 20:02:38 +08:00
|
|
|
export LIVEBOOK_PORT=0
|
2022-02-15 19:44:59 +08:00
|
|
|
|
|
|
|
cookie_path="${RELEASE_ROOT}/releases/COOKIE"
|
|
|
|
if [ ! -f $cookie_path ]; then
|
|
|
|
cat /dev/urandom | env LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 > $cookie_path
|
|
|
|
fi
|
2022-07-28 21:40:55 +08:00
|
|
|
|
|
|
|
cd $HOME
|