Skip to content

Commit

Permalink
Merge pull request naymspace#498 from naymspace/krns-fix-installation…
Browse files Browse the repository at this point in the history
…-guide

Improve installation guide
  • Loading branch information
Flo0807 authored Jul 31, 2024
2 parents 30ef738 + 615e845 commit 714ff7a
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 714ff7a

Please sign in to comment.