#!/bin/bash
set -euxo pipefail

if [ -e /deps/phoenix ]; then
  mix phx.server
else
  mix run --no-halt
fi
