mirror of https://github.com/joho/godotenv.git
55 lines
1017 B
Go
55 lines
1017 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
|
|
"strings"
|
|
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
func main() {
|
|
var showHelp bool
|
|
flag.BoolVar(&showHelp, "h", false, "show help")
|
|
var rawEnvFilenames string
|
|
flag.StringVar(&rawEnvFilenames, "f", "", "comma separated paths to .env files")
|
|
|
|
flag.Parse()
|
|
|
|
usage := `
|
|
Run a process with a env setup from a .env file
|
|
|
|
godotenv [-f ENV_FILE_PATHS] COMMAND_ARGS
|
|
|
|
ENV_FILE_PATHS: comma separated paths to .env files
|
|
COMMAND_ARGS: command and args you want to run
|
|
|
|
example
|
|
godotenv -f /path/to/something/.env,/another/path/.env fortune
|
|
`
|
|
// if no args or -h flag
|
|
// print usage and return
|
|
args := flag.Args()
|
|
if showHelp || len(args) == 0 {
|
|
fmt.Println(usage)
|
|
return
|
|
}
|
|
|
|
// load env
|
|
var envFilenames []string
|
|
if rawEnvFilenames != "" {
|
|
envFilenames = strings.Split(rawEnvFilenames, ",")
|
|
}
|
|
|
|
// take rest of args and "exec" them
|
|
cmd := args[0]
|
|
cmdArgs := args[1:len(args)]
|
|
|
|
err := godotenv.Exec(envFilenames, cmd, cmdArgs)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|