Last active
August 29, 2015 14:03
-
-
Save knewter/83c2fa7628bdebe84d96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[jadams:/home/jadams/elixir/link_extractor_web] 8m31s $ mix test | |
Running Elixir.LinkExtractorWeb.Router with Cowboy on port 4000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule LinkExtractorWeb.Router do | |
use Phoenix.Router | |
plug Plug.Static, at: "/static", from: :link_extractor_web | |
get "/", LinkExtractorWeb.Controllers.Pages, :index, as: :page | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment