简体   繁体   中英

mix deps.get error in elixr guardian after guardian installation

I installed Guardian following a tutorial, using {:guardian, "~> 0.14"}. when running mix deps.get it gives this error:

** (Mix.Config.LoadError) could not load config config/dev.exs
** (CompileError) config/dev.exs:1: undefined function mix/1
(elixir) lib/code.ex:176: Code.eval_string/3
(mix) lib/mix/config.ex:180: Mix.Config.read!/2
(mix) lib/mix/config.ex:217: anonymous fn/3 in Mix.Config.read_wildcard!/2

This is my config/dev.exs file. I tried generating a secret key for guardian but it gave the sane issue

mix phoenix.gen.secretuse Mix.Config

config :sling, Sling.Endpoint,
  http: [port: 4000],
  debug_errors: true,
  code_reloader: true,
  check_origin: false,
  watchers: []

# Do not include metadata nor timestamps in development logs
config :logger, :console, format: "[$level] $message\n"

# Set a higher stacktrace during development. Avoid configuring such
# in production as building large stacktraces may be expensive.
config :phoenix, :stacktrace_depth, 20

# Configure your database
config :sling, Sling.Repo,
  adapter: Ecto.Adapters.Postgres,
  username: "postgres",
  password: "postgres",
  database: "sling_dev",
  hostname: "localhost",
  pool_size: 10

# Configure Guardian
  config :guardian, Guardian


  import_config "dev.secret.exs"

从第1行中删除mix phoenix.gen.secret ,以便use Mix.Config

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM