diff options
| author | jackyzha0 <[email protected]> | 2020-05-09 15:15:34 -0700 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2020-05-09 15:15:34 -0700 |
| commit | 516a08a17ee9150220abeec0d5dff72099fd2dcd (patch) | |
| tree | f4aa44cd25417297380431159622ebf379070259 /db/db.go | |
| parent | add dockerfile and makefile (diff) | |
| download | ctrl-v-516a08a17ee9150220abeec0d5dff72099fd2dcd.tar.xz ctrl-v-516a08a17ee9150220abeec0d5dff72099fd2dcd.zip | |
fix dockerfile envs
Diffstat (limited to 'db/db.go')
| -rw-r--r-- | db/db.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ func init() { // load .env file err := godotenv.Load() if err != nil { - log.Fatal("Error loading .env file") + log.Fatal("Error loading .env file: %s", err.Error()) } mUser := os.Getenv("MONGO_USER") |