bldsh / dive

dive in to learn
Apache License 2.0
0 stars 0 forks source link

go install: godotenv #15

Open AmitKumarDas opened 3 months ago

AmitKumarDas commented 3 months ago
# Derive GOBIN & set it as PATH
GOPATH=$(go env GOPATH)
GOBIN="${GOPATH}/bin"
export PATH="${PATH}:${GOBIN}"

# Install godotenv to read .env file(s)
go install github.com/joho/godotenv/cmd/godotenv@latest

godotenv -h
AmitKumarDas commented 3 months ago