diff --git a/mix.exs b/mix.exs index d200150..364396a 100644 --- a/mix.exs +++ b/mix.exs @@ -2,6 +2,8 @@ defmodule Mv.MixProject do use Mix.Project def project do + Code.compiler_options(ignore_module_conflict: true) + [ app: :mv, version: "0.1.0", diff --git a/priv/repo/seeds.exs b/priv/repo/seeds.exs index 1b5d0a0..fda4586 100644 --- a/priv/repo/seeds.exs +++ b/priv/repo/seeds.exs @@ -5,6 +5,8 @@ # Bootstrap runs in all environments. Dev seeds (members, groups, sample data) # run only in dev and test. +Code.compiler_options(ignore_module_conflict: true) + # Always run bootstrap (fee types, custom fields, roles, admin, system user, settings) Code.eval_file("priv/repo/seeds_bootstrap.exs") @@ -14,3 +16,4 @@ if Mix.env() in [:dev, :test] do end IO.puts("✅ All seeds completed.") +Code.compiler_options(ignore_module_conflict: false)