The path of the web folder under Phoenix 1.3 seems to be lib/app_name_web, not lib/app_name/web?
Closed this issue · 4 comments
x-ji commented
When running mix coh.install
, I get Cannot find web path lib/app_name/web. Are you sure you want to continue?
However, it seems that the correct path should be lib/app_name_web
, as documented at http://phoenixframework.org/blog/upgrading-from-120-to-130 for example?
x-ji commented
The same applies to the name of the web module: It has been AppNameWeb
in my newly generated project with phx.new
, instead of AppName.Web
which is included in the generated coherence code. I had to manually replace them in my project.
x-ji commented
Sorry. It seems that I accidentally installed version 0.4.0 of coherence.
x-ji commented
Apparently the README file needs updating, since it still instructs def deps do [{:coherence, "~> 0.4"}] end
...