mirror of
https://github.com/ClaperCo/Claper.git
synced 2026-02-24 20:19:48 +01:00
15 lines
164 B
Bash
Executable File
15 lines
164 B
Bash
Executable File
set -a
|
|
source .env
|
|
set +a
|
|
|
|
args=("$@")
|
|
|
|
if [ "${args[0]}" == "start" ]; then
|
|
mix phx.server
|
|
elif [ "${args[0]}" == "iex" ]; then
|
|
iex -S mix
|
|
else
|
|
mix "$@"
|
|
fi
|
|
|