DEV Community

Discussion on: Setting up a new Phoenix 1.5 project! (With Phoenix LiveView!)

Collapse
 
juanpabloaj profile image
JuanPablo

thanks for your post :)

Maybe after this step

mix phx.new feenix --live && cd feenix

you could add, edit this file

+++ b/config/dev.exs
@@ -8 +8 @@ config :feenix, Feenix.Repo,

  • hostname: "localhost",
  • hostname: "db",

and

mix ecto.create

Because, for someone, this could be the first contact with Phoenix.

Thanks again.