Experimenting with Phoenix 1.7 after updating Mac to Ventura

After installing Ventura, I got an issue like Git is not present. And when I tried to use latest Phoenix 1.7, along with the Live Auth, I saw some errors with argon2. (Something something, xcrun missing, can’t compile argon2_elixir etc.)

Point is, just do:

  1. xcode-select --install or install directly from source! (So git & friends will work!)
  2. mix deps.compile argon2_elixir (To recompile argon2)
  3. mix deps.compile file_system (So your live reload will work!)
2 Likes