Current section
43 Versions
Jump to
Current section
43 Versions
Compare versions
17
files changed
+147
additions
-42
deletions
| @@ -1,5 +1,11 @@ | |
| 1 1 | # CHANGELOG |
| 2 2 | |
| 3 | + ## v0.5.3 (2021-10-06) |
| 4 | + |
| 5 | + * Show OTP 24.1+ new sockets in tab |
| 6 | + * Allow metrics and request logger to be disabled |
| 7 | + * Do not include embedded assets in priv |
| 8 | + |
| 3 9 | ## v0.5.2 (2021-09-21) |
| 4 10 | |
| 5 11 | * Fix Ecto stats page when running on multi node env |
| @@ -47,7 +47,7 @@ Add the following to your `mix.exs` and run `mix deps.get`: | |
| 47 47 | ```elixir |
| 48 48 | def deps do |
| 49 49 | [ |
| 50 | - {:phoenix_live_dashboard, "~> 0.1"} |
| 50 | + {:phoenix_live_dashboard, "~> 0.5"} |
| 51 51 | ] |
| 52 52 | end |
| 53 53 | ``` |
| @@ -130,6 +130,22 @@ Finally, you will also want to configure your `config/prod.exs` and use your dom | |
| 130 130 | |
| 131 131 | Then you should be good to go! |
| 132 132 | |
| 133 | + ## Using from the command line with PLDS |
| 134 | + |
| 135 | + It's possible to use the LiveDashboard without having to add it as a dependency of your |
| 136 | + application, or when you don't have Phoenix installed. [`PLDS`](https://hexdocs.pm/plds) is a command |
| 137 | + line tool that provides a standalone version of LiveDashboard with some batteries included. |
| 138 | + |
| 139 | + You can install it with: |
| 140 | + |
| 141 | + $ mix escript.install hex plds |
| 142 | + |
| 143 | + And connect to a running node with: |
| 144 | + |
| 145 | + $ plds server --connect mynode --open |
| 146 | + |
| 147 | + For more details, please check the [PLDS documentation](https://hexdocs.pm/plds). |
| 148 | + |
| 133 149 | <!-- MDOC !--> |
| 134 150 | |
| 135 151 | ## Contributing |
unknowndist/css/app.css
File is too large to be displayed (100 KB limit).
unknowndist/js/app.js
File is too large to be displayed (100 KB limit).
| @@ -0,0 +1,2 @@ | |
| 1 | + /* NProgress, (c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress |
| 2 | + * @license MIT */ |
Loading more files…