似乎test.secret.exs
在test
環境中沒有自動加載。Elixir/PhoenixFramework - 如何讓test.secret.exs自動加載到測試環境中?
Application.get_env(:my_app, :my_settings)
回報nil
即使我test.secret.exs
包含以下內容:
use Mix.Config
config :my_app, :my_settings,
setting1: "blah",
setting2: "bleh"
我跑藥劑1.4.0。
你有'import_config「test.secret.exs」''''test.exs'結尾像'prod.exs'有? – Dogbert
當我需要在'config.exs'中執行以下操作嗎? 'import_config「#{Mix.env} .exs」' – John
是的,它導入'test.exs'。 'test.exs'應該像'prod.exs'一樣導入'test.secret.exs'。 – Dogbert