Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用名为“mything”的钢筋创建了一个项目。我添加了啤酒作为依赖项。现在如何配置啤酒?我尝试在 mything.app.src 的“env”中添加一个“lager”部分,但它似乎没有获得这些设置。我想我不知道依赖项的环境设置应该去哪里。
您需要创建config_name.config包含要配置的每个应用程序的配置列表的文件:
config_name.config
[{mything, [...]}, {lager, [...]}].
然后你可以将它传递给erlusing option -config config_name。它称为系统配置,它会覆盖.app文件中的默认环境属性。在发行版中,它通常被命名为sys.config.
erl
-config config_name
.app
sys.config
为您提供的资源:配置应用程序和配置。