Build StatusHex pmCoverage Status

VerkWeb

Development

To start Verk Web app:

  1. Install dependencies with mix deps.get
  2. Install front-end dependencies npm install && bower install
  3. Start Phoenix endpoint with mix phoenix.server

Now you can visit localhost:4000 from your browser.

Using

First, add Verk Web to your mix.exs dependencies:

def deps do
  [{:verk_web, "~> 0.9"},
   {:verk,     "~> 0.9"}]
end

and run

$ mix deps.get

Now, list :verk_web and :verk applications as your application dependencies. They must run together on the same node.

def application do
  [applications: [:verk_web, :verk]]
end

What it looks like