Mariusz Baleczny

Results 4 comments of Mariusz Baleczny

Hi, try with instructions on branch [phx-1.3](https://github.com/smpallen99/ex_admin/tree/phx-1.3) Anyway, I needed to change line 18 in `ex_admin/lib/tasks/util.ex` from: `path1 = Path.join ["lib", to_string(Mix.Phoenix.otp_app()), "web"]` to: `path1 = Path.join ["lib", to_string(Mix.Phoenix.otp_app()) "_web"]`

Did you run `mix deps.compile` after making the change described above? BTW after successful `mix admin.install` you should add to your `config/config.exs` file ``` config :ex_admin, repo: MyProject.Repo, module: MyProjectWeb,...

This issue is now fixed fixed in PR #403

@StephanMeijer The path `ex_admin/lib/tasks/util.ex` it's wrong. My mistake. It should be `ex_admin/lib/mix/utils.ex`, but this is not the issue anymore. You don't have to I've followed the guide again on fresh...