Closed jimsynz closed 2 months ago
It needs to add the following alias into the mix.exs if it doesn't already exist.
mix.exs
def project do [ # ... aliases: aliases(), # ... ] end def aliases do [ test: ["ash.setup --quiet", "test"] ] end
Okay, I've added tools for this in igniter. We now also remove some of the Ecto-specific stuff that it makes sense to remove :) Will be pushing this shortly.
It needs to add the following alias into the
mix.exs
if it doesn't already exist.