phoenix-patterns
Installation
SKILL.md
Phoenix Patterns
Master Phoenix Framework patterns to build well-structured, maintainable web applications in Elixir.
Context Design
Contexts are dedicated modules that expose and group related functionality:
defmodule MyApp.Accounts do
@moduledoc """
The Accounts context handles user management and authentication.
"""
alias MyApp.Repo
alias MyApp.Accounts.User