mirror of
https://github.com/ClaperCo/Claper.git
synced 2025-12-29 00:25:02 +01:00
13 lines
114 B
Bash
Executable File
13 lines
114 B
Bash
Executable File
set -a
|
|
source .env
|
|
set +a
|
|
|
|
args=("$@")
|
|
|
|
if [ "${args[0]}" == "start" ]; then
|
|
mix phx.server
|
|
else
|
|
mix "$@"
|
|
fi
|
|
|