Files
Claper/dev.sh
2024-06-08 17:11:40 +02:00

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