设置 GOOGLE_APPLICATION_CREDENTIALS

huangapple go评论87阅读模式
英文:

Setting GOOGLE_APPLICATION_CREDENTIALS

问题

我正在进行一个Go项目。我想创建一个.env文件。我参考了文档,但是我不明白如何创建它,将文件放在哪里以及如何使用它。你们能帮助我吗?
链接:https://firebase.google.com/docs/firestore/quickstart#go

英文:

I am working on a Go project. I want to create an .env file. I refer to the docs but I am not understanding how to do it & where to put that file & how can I use it? Can you guys please help me?
Link: https://firebase.google.com/docs/firestore/quickstart#go

答案1

得分: 1

如果你想在Golang中加载一个.env文件,你可以使用github.com/joho/godotenv模块。然后,你可以使用godotenv.Load()来加载你的文件。

我通常更喜欢使用direnv,并为每个项目创建一个.envrc文件,这样我就可以使用os库并加载环境变量 设置 GOOGLE_APPLICATION_CREDENTIALS

英文:

If you want to load a .env file in Golang, you can use the github.com/joho/godotenv module. Then, you can load your file with godotenv.Load().

I usually prefer to use direnv and have .envrc for each of my project so I can just the os lib and load the environment variables 设置 GOOGLE_APPLICATION_CREDENTIALS

huangapple
  • 本文由 发表于 2021年8月15日 14:12:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/68789129.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定