zorn / franklin

Franklin is written in Elixir, Phoenix, and LiveView and is an intentionally over-engineered blog application. It uses an event-sourced / CQRS core (via commanded) along side modern component-based UI presentation. It aims to make even the simple things overly complex in the spirit of personal education towards these architecture decisions.
MIT License
16 stars 5 forks source link

[Fixes #233] Add an authentication system for the admin. #245

Closed zorn closed 1 year ago

zorn commented 1 year ago

Fixes #233

The command I first used to generate the auth system was:

$ mix phx.gen.auth Accounts User users --binary-id --web Admin --hashing-lib argon2

Though I significantly changed and reduced the UI generated. I even removed a lot of features for auth that I do not need yet.