Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 723 Bytes

README.MD

File metadata and controls

31 lines (27 loc) · 723 Bytes

Elixir basic commands

iex -S mix
recompile
mix deps.get
mix docs
mix test

Discuss Phoenix App

mix archive.install hex phx_new
mix phx.new --version
mix phx.new project-name
mix ecto.create
mix phx.server
iex -S mix phx.server

Resolving issues

:egd issue

Because :egd isn’t the part of Erlang-OTP release anymore, so you’d need to add

{:egd, github: "erlang/egd"} to your dependencies

Once :egd is added to the dependencies, you’d need to install rebar, the erlang build tool, as this library depends on rebar. Run

mix local.rebar --force to install rebar (and rebar3). After installing rebar close and re-open your terminal and run mix deps.get inside the project folder.