Created
October 20, 2016 20:14
-
-
Save bnhansn/4f82bd2580a3f91185b90706907159a6 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
| # content above | |
| def application do | |
| [mod: {Sling, []}, | |
| applications: [:phoenix, :phoenix_pubsub, :phoenix_html, :cowboy, :logger, :gettext, | |
| :phoenix_ecto, :postgrex, :comeonin]] # :comeonin added here | |
| end | |
| # ... | |
| defp deps do | |
| [{:phoenix, "~> 1.2.1"}, | |
| {:phoenix_pubsub, "~> 1.0"}, | |
| {:phoenix_ecto, "~> 3.0"}, | |
| {:postgrex, ">= 0.0.0"}, | |
| {:phoenix_html, "~> 2.6"}, | |
| {:phoenix_live_reload, "~> 1.0", only: :dev}, | |
| {:gettext, "~> 0.11"}, | |
| {:cowboy, "~> 1.0"}, | |
| {:comeonin, "~> 2.5"}] # :comeonin added here | |
| end | |
| # content below |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment