第一次使用Phoenix时,为什么会出现此错误“应用程序不可用”?

时间:2018-09-03 10:48:57

标签: elixir phoenix-framework phoenix mix

  

[info]与Cowboy一起使用Slicker.Endpoint运行   http://localhost:4000您已经在您的应用程序中配置了:Slicker   配置文件,但该应用程序不可用。

     

这通常意味着:

     
      
  1. 您尚未将应用程序作为依赖项添加到mix.exs文件中。

  2.   
  3. 您正在配置的应用程序实际上并不存在。

  4.   
     

请确保:Slicker存在或删除配置。

我的项目在这里-> Github link

下面是mix.exs文件

defmodule Slicker.Mixfile do
  use Mix.Project

  def project do
    [app: :slicker,
     version: "0.0.1",
     elixir: "~> 1.2",
     elixirc_paths: elixirc_paths(Mix.env),
     compilers: [:phoenix, :gettext] ++ Mix.compilers,
     build_embedded: Mix.env == :prod,
     start_permanent: Mix.env == :prod,
     aliases: aliases(),
     deps: deps()]
  end

  # Configuration for the OTP application.
  #
  # Type `mix help compile.app` for more information.
  def application do
    [mod: {Slicker, []},
     applications: [:phoenix, :phoenix_pubsub, :cowboy, :logger, :gettext,
                    :phoenix_ecto, :postgrex, :comeonin]]
  end

  # Specifies which paths to compile per environment.
  defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
  defp elixirc_paths(_),     do: ["lib", "web"]

  # Specifies your project dependencies.
  #
  # Type `mix help deps` for examples and options.
  defp deps do
    [{:phoenix, "~> 1.2.5"},
     {:phoenix_pubsub, "~> 1.0"},
     {:phoenix_ecto, "~> 3.0"},
     {:postgrex, ">= 0.0.0"},
     {:phoenix_html, "~> 2.6"},
     {:gettext, "~> 0.11"},
     {:cowboy, "~> 1.0"},
     {:bcrypt_elixir, "~> 1.0"},
     {:comeonin, "~> 4.1"},
     {:guardian, "~> 1.0"},
     {:cors_plug, "~> 1.5"}]
  end

  # Aliases are shortcuts or tasks specific to the current project.
  # For example, to create, migrate and run the seeds file at once:
  #
  #     $ mix ecto.setup
  #
  # See the documentation for `Mix` for more info on aliases.
  defp aliases do
    ["ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
     "ecto.reset": ["ecto.drop", "ecto.setup"],
     "test": ["ecto.create --quiet", "ecto.migrate", "test"]]
  end
end

0 个答案:

没有答案