Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.26 KB

README.md

File metadata and controls

31 lines (20 loc) · 1.26 KB

Taskify Logo

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

Tracking tasks with Taskify

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?

Recommended setup

  • Elixir 1.14.1
  • Erlang 24.3.4.6
  • Phoenix 1.6.15
  • PostgreSQL 14.5

Suggestion: use asdf with elixir and erlang plugins

Task 001 - Creating your own taskify web app

  • 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 with iex -S mix phx.server
  • Now you can visit localhost:4000 from your browser.

Task 001