依赖修改不会反映在应用程序中

问题描述 投票:0回答:1

我是Elixir / Phoenix的新手。我正在努力解决https://github.com/smpallen99/coherence/issues/315问题。所以我在coherence添加了mix.exs作为path。在我对coherence进行更改之后,它不会立即反映在Phoenix应用程序中。如何解决这个问题?

elixir phoenix-framework
1个回答
0
投票

在凤凰应用程序中实时重载的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)$}
    ]
  ]
© www.soinside.com 2019 - 2024. All rights reserved.