This file contains 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 EctoUuid.Router do | |
use EctoUuid.Web, :router | |
pipeline :browser do | |
plug :accepts, ["html"] | |
plug :fetch_session | |
plug :fetch_flash | |
plug :protect_from_forgery | |
plug :put_secure_browser_headers | |
end |
This file contains 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
A new Hex version is available (0.12.0), please update with `mix local.hex` | |
Unchecked dependencies for environment test: | |
* gettext (Hex package) | |
the dependency is not available, run “mix deps.get” | |
* cowboy (Hex package) | |
the dependency is not available, run “mix deps.get” | |
* phoenix_html (Hex package) | |
the dependency is not available, run “mix deps.get” | |
* phoenix (Hex package) | |
the dependency is not available, run “mix deps.get” |
This file contains 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
mix phoenix.gen.html Company companies name:string mission_statement:string | |
mix phoenix.gen.html Manager managers name:string meetings_per_day:integer company_id:references:companies | |
mix phoenix.gen.html Meeting meetings topic:string attendee_count:integer manager_id:references:managers |