Go godotenv 库
godotenv
twelve-factor 应用提倡将配置存储在环境变量中。任何从开发环境切换到生产环境时需要修改的东西都从代码抽取到环境变量里。 但是在实际开发中,如果同一台机器运行多个项目,设置环境变量容易冲突,不实用。
godotenv 库从 .env 文件中读取配置, 然后存储到程序的环境变量中。在代码中可以使用读取非常方便。
godotenv 源于一个 Ruby 的开源项目 dotenv。
安装库(library):
|
|
安装命令:
|
|
快速入门
Add your application configuration to your .env
file in the root of your project:
|
|
Then in your Go app you can do something like
|
|
⭐ If you’re even lazier than that, you can just take advantage of the autoload package which will read in .env
on import
|
|
While .env
in the project root is the default, you don’t have to be constrained, both examples below are 100% legit
|
|
as a final aside, if you don’t want godotenv munging your env you can just get a map back instead
|
|
… or from an io.Reader
instead of a local file
|
|
… or from a string
if you so desire
|
|
多环境处理
Existing envs take precedence of envs that are loaded later.
先 load 的 env 优先级高于后 load
The convention (惯例) for managing multiple environments (i.e. development, test, production) is to create an env named {YOURAPP}_ENV
and load envs in this order:
|
|
命令行模式
Assuming you’ve installed the command as above and you’ve got $GOPATH/bin
in your $PATH
|
|
If you don’t specify -f
it will fall back on the default of loading .env
in PWD
By default, it won’t override existing environment variables; you can do that with the -o
flag.
Writing Env Files
Godotenv can also write a map representing the environment to a correctly-formatted and escaped file
|
|
… or to a string
|
|