Elixir 配置与环境变量
原文英文,约600词,阅读约需3分钟。发表于: 。Intro One of confusions for me when work with Elixir is configuration of Elixir application. That not same with common configuration style I worked before. So this topic I will deep dive to...
本文介绍了Elixir应用的配置,分为应用配置和操作系统环境变量。应用配置包括编译时和运行时配置,通常在mix.exs或配置文件中设置。编译时配置在构建后不可更改,运行时配置可动态修改。操作系统环境变量通过System.get_env获取,建议在runtime.exs中处理。