Skip to content

Instantly share code, notes, and snippets.

@knewter
Last active August 29, 2015 14:03
Show Gist options
  • Save knewter/83c2fa7628bdebe84d96 to your computer and use it in GitHub Desktop.
Save knewter/83c2fa7628bdebe84d96 to your computer and use it in GitHub Desktop.
[jadams:/home/jadams/elixir/link_extractor_web] 8m31s $ mix test
Running Elixir.LinkExtractorWeb.Router with Cowboy on port 4000
defmodule LinkExtractorWeb.Router do
use Phoenix.Router
plug Plug.Static, at: "/static", from: :link_extractor_web
get "/", LinkExtractorWeb.Controllers.Pages, :index, as: :page
end
defmodule LinkExtractorWeb.Config.Test do
use LinkExtractorWeb.Config
config :router, port: 4001,
ssl: false,
# Full error reports are enabled
consider_all_requests_local: true
config :plugs, code_reload: true
config :logger, level: :debug
end
@knewter
Copy link
Author

knewter commented Jul 11, 2014

lawlz

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment