mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-13 03:06:06 +08:00
12 lines
335 B
Bash
12 lines
335 B
Bash
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
export MIX_ENV=prod
|
|
export MIX_TARGET=app
|
|
export ELIXIRKIT_APP_NAME=Livebook
|
|
export ELIXIRKIT_PROJECT_DIR=$PWD/../../..
|
|
export ELIXIRKIT_RELEASE_NAME=app
|
|
|
|
configuration=${ELIXIRKIT_CONFIGURATION:-Debug}
|
|
target_dir="$PWD/bin/${ELIXIRKIT_APP_NAME}-$configuration"
|
|
build_args="--configuration $configuration"
|