Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve installation guide #498

Merged
merged 2 commits into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions guides/get_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ In your `mix.exs`:
defp deps do
[
...
{:backpex, "~> 0.5.1"}
{:backpex, "~> 0.6.0"}
]
end
```
Expand Down Expand Up @@ -209,7 +209,7 @@ You have to do this step only once in your router file, so if you already added

import Backpex.Router

scope "/admin", DemoWeb do
scope "/admin", MyAppWeb do
pipe_through :browser

# add this line
Expand All @@ -230,7 +230,7 @@ We use a live session to add the init assigns to all LiveViews in the `/admin` s

import Backpex.Router

scope "/admin", DemoWeb do
scope "/admin", MyAppWeb do
pipe_through :browser

backpex_routes()
Expand All @@ -250,7 +250,7 @@ To make the LiveResource accessible in your application, you need to add routes

import Backpex.Router

scope "/admin", DemoWeb do
scope "/admin", MyAppWeb do
pipe_through :browser

backpex_routes()
Expand Down