chore: fix git conflict in guide

This commit is contained in:
Zach Daniel 2023-02-14 22:24:01 -05:00
parent 2e5f93f546
commit b5bca93fe9

View file

@ -17,7 +17,7 @@ $ cd example
### Application Dependencies
We need to add the following dependencies:
We need to add the following dependencies. Use `mix hex.info dependency_name` to get the latest version of each dependency.
**mix.exs**
@ -30,16 +30,10 @@ defmodule Example.MixProject do
[
# ...
# add these lines -->
{:ash, "~> 2.5.11"},
{:ash_authentication, "~> 3.7.3"},
<<<<<<< Updated upstream
{:ash_authentication_phoenix, "~> 1.5.0"},
{:ash_postgres, "~> 1.3.2"},
{:elixir_sense, github: "elixir-lsp/elixir_sense", only: [:dev, :test]}
=======
{:ash_authentication_phoenix, "~> 1.4.6"},
{:ash_postgres, "~> 1.3.2"}
>>>>>>> Stashed changes
{:ash, "~> x.x"},
{:ash_authentication, "~> x.x"},
{:ash_authentication_phoenix, "~> x.x"},
{:ash_postgres, "~> x.x"}
# <-- add these lines
]
end