我是Elixir / Phoenix的新手。我正在努力解决https://github.com/smpallen99/coherence/issues/315问题。所以我在coherence
添加了mix.exs
作为path
。在我对coherence
进行更改之后,它不会立即反映在Phoenix应用程序中。如何解决这个问题?
在凤凰应用程序中实时重载的Hack技巧(冷启动对我没有任何明确的解决方法):在config/dev.exs
中将外部应用程序的路径显式添加到监视路径(live_reload
下的config :my_app, MyApp.Endpoint
键):
config :my_app, MyApp.Endpoint,
live_reload: [
patterns: [
~r{../coherence/lib/.*(ex)$}, # THIS
~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$},
~r{priv/gettext/.*(po)$},
~r{lib/ammotion_web/views/.*(ex)$},
~r{lib/ammotion_web/templates/.*(eex)$}
]
]