mirror of
https://github.com/ClaperCo/Claper.git
synced 2026-02-24 12:09:59 +01:00
11 lines
148 B
Bash
Executable File
11 lines
148 B
Bash
Executable File
export $(cat .env | xargs)
|
|
|
|
args=("$@")
|
|
|
|
if [ "${args[0]}" == "test" ]; then
|
|
mix test
|
|
elif [ "${args[0]}" == "start" ]; then
|
|
mix phx.server
|
|
fi
|
|
|