godotenvを使って.envから環境変数を読み込む
リポジトリ
envファイルを用意
AZURECLIENTID=f81b5350-09dc-480e-8c03-1xxxxxxxxxxxxxxxxx
例
package main
import (
"fmt"
"os"
"github.com/joho/godotenv"
)
func main() {
err := godotenv.Load(fmt.Sprintf("%s.env", os.Getenv("GO_ENV")))
if err != nil {
}
ID := os.Getenv("AZURECLIENTID")
fmt.Println(ID)
}
使い方
yuta:~/go-env $ go run main.go
f81b5350-09dc-480e-8c03-xxxxxxxxxxxxxxx
Author And Source
この問題について(godotenvを使って.envから環境変数を読み込む), 我々は、より多くの情報をここで見つけました https://qiita.com/yuta_vamdemic/items/0f59697d1b49cfaf5d59著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .