Skip to content

Commit

Permalink
Update readme, changelog, and mix for 0.1.5 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
IanLuites committed Feb 14, 2017
1 parent 5bdbce3 commit 4634f74
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
## 0.1.5

* Bake assets into wobserver.
* Remove custom tasks from hex package.
* Improve web build tools.
* Improve package build tools.
* Improve node discovery in plug mode.
* Fix distillery support. (#3)

## 0.1.4
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Wobserver

[![Hex.pm](https://img.shields.io/hexpm/v/wobserver.svg "Hex")](https://hex.pm/packages/wobserver)
[![Hex.pm](https://img.shields.io/badge/docs-v0.1.4-brightgreen.svg "Docs")](https://hexdocs.pm/wobserver)
[![Hex.pm](https://img.shields.io/badge/docs-v0.1.5-brightgreen.svg "Docs")](https://hexdocs.pm/wobserver)
[![Hex.pm](https://img.shields.io/hexpm/l/wobserver.svg "License")](LICENSE)

Web based metrics, monitoring, and observer.
Expand Down Expand Up @@ -605,6 +605,7 @@ config :wobserver,
#### <a name="mode-plug"></a> Plug
Plug mode prevents `:wobserver` from starting `:cowboy` (ranch).
Set `mode` to `:plug` in the `:wobserver` configuration to use plug mode.
Set `remote_url_prefix` to the url prefix you put `:wobserver` behind to make sure dns node discovery still functions.

Add the following line of code to the application's router to forward requests to `:wobserver`:
```elixir
Expand All @@ -626,7 +627,8 @@ Example:
__config.exs__
```elixir
config :wobserver,
mode: :plug
mode: :plug,
remote_url_prefix: "/wobserver"
```
__my_router.ex__
```elixir
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Wobserver.Mixfile do
def project do
[
app: :wobserver,
version: "0.1.4",
version: "0.1.5",
elixir: "~> 1.4",
description: "Web based metrics, monitoring, and observer.",
package: package(),
Expand Down

0 comments on commit 4634f74

Please sign in to comment.