Condensed Phoenix Todo List Tutorial
- Install the required software: phoenix, elixir, and postgres
mix phx.new todo_listcd todo_listmix phx.gen.html TaskList Item items description:string complete:boolean-
Add the resource to your browser scope in
lib/todo_list_web/router.ex... get "/", PageController, :index + resources "/items", ItemController mix ecto.migratemix phx.serverand navigate tohttp://localhost:4000/items