I have a phoenix application, however I have needed to restart the server manually after every backend change. code_reload is enabled, and plug CodeReload is being used.
I've tried generating a new project (mix phoenix.new --no-brunch), I've tried different editors (vim, vscode, atom, and textedit), I've tried always requiring plug CodeReload in my endpoint, and I've tried manually setting the MIX_ENV to dev - however my project still won't compile when I change a file. How should I go about tracking down what the problem is?
CodeReload does not work when running mix phoenix.server or iex -S mix phoenix.server
live_reloadsetting, and that did not work either. - cadlac