↧
Answer by xji for How do I use phoenix console (iex) with heroku?
Note that if you deploy your app to Heroku using the native release mechanism that comes with Mix since Elixir 1.8, you may simply ssh into the running dyno and remote into the running BEAM node:# In...
View ArticleAnswer by PatNowak for How do I use phoenix console (iex) with heroku?
When dealing with phoenix project just use:heroku run iex -S mix phoenix.serverTo launch the server in your iex consoleor simplyheroku run iex -S mixto compile the files without starting the server.
View ArticleAnswer by Blaine Hatab for How do I use phoenix console (iex) with heroku?
The command that worked washeroku run iex -S mix
View ArticleHow do I use phoenix console (iex) with heroku?
I'm trying to change some data on heroku that I normally do with iex -s , but the following command does nothing.heroku run iex
View Article