我已经构建了一个独立的Phoenix应用程序。它自己可以正常工作。我需要将其作为依赖项添加到新的Phoenix项目“测试”中。我将其发布为十六进制,将其添加到依赖项和应用程序中,并在config.exs中添加了配置
config :app, App.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
database: "test_db",
superuser: "postgres",
superpass: "postgres"
现在,当我运行应用程序时,我会得到
no configuration found for otp_app :app and module App.Endpoint
然后App无法连接到数据库。