To start your Phoenix server:
- Run
mix setupto install and setup dependencies - Start Phoenix endpoint with
mix phx.serveror inside IEx withiex -S mix phx.server
Now you can visit localhost:4000 from your browser.
- Domain List: lib/todos/list.ex
- Resource Todo: lib/todos/todo.ex
- Seed: lib/todos/seed.ex
- HomePage: lib/todos_holo/home_page.ex
- AddTodo: lib/todos_holo/components/add_todo.ex
- TodoCheckbox: lib/todos_holo/components/cleanup_todos.ex
- CleanupTodos: lib/todos_holo/components/todo_checkbox.ex
- How do I clear the input value after the
:add_todoevent? - Is there a way to make the
<input checked={boolean}>work? - The event of
<input type="checkbox">always hasvalue: "on"? - Event type
inputseems missing at the moment?
- Elixir: https://elixir-lang.org/docs.html
- Phoenix: https://hexdocs.pm/phoenix/overview.html
- Ash: https://hexdocs.pm/ash/readme.html
- Hologram: https://hologram.page/