How to check Phoenix (Elixir framework) installed version?

空扰寡人 提交于 2019-12-23 19:46:25

问题


I would like to check Phoenix framework version from the command line like I check for Elixir (elixir -v)


回答1:


I was able to do it with

# for >= v1.3
mix phx.new --version

# for < v1.3
mix phoenix.new --version

after navigating to the folder containing the phoenix app. I got the cue from here. Hope it helps someone facing the same query.



来源:https://stackoverflow.com/questions/50772332/how-to-check-phoenix-elixir-framework-installed-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!