Taskify is a toy app created for the "Getting Started with Phoenix" workshop. The goal is to introduce the basic structure of a CRUD web app using the Phoenix Framework.
Estimated workshop duration: 2 hours
The best solution to start a new project is to break it down into small parts! What about starting learning Phoenix and Elixir while creating an app to track your progress?
- Elixir 1.14.1
- Erlang 24.3.4.6
- Phoenix 1.6.15
- PostgreSQL 14.5
Suggestion: use asdf with elixir and erlang plugins
- Run
mix phx.new taskify
- Install dependencies with
mix deps.get
- Create and migrate your database with
mix ecto.setup
- Start Phoenix endpoint with
mix phx.server
or inside IEx withiex -S mix phx.server
- Now you can visit
localhost:4000
from your browser.