Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Commit

Permalink
gx publish 0.2.22
Browse files Browse the repository at this point in the history
  • Loading branch information
i-norden committed Dec 12, 2018
1 parent efce785 commit abc8b69
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gx/lastpubver
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.21: QmYyzmMnhNTtoXx5ttgUaRdHHckYnQWjPL98hgLAR2QLDD
0.2.22: QmbZ4DPNi99YQwzFSKsdU7pLmieiWs7ajGkPrfvpGjfAFN
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
"license": "",
"name": "go-ipfs-config",
"releaseCmd": "git commit -a -m \"gx publish $VERSION\"",
"version": "0.2.21"
"version": "0.2.22"
}

10 changes: 7 additions & 3 deletions profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package config
import (
"fmt"
"net"
"os"
"time"
)

Expand Down Expand Up @@ -142,9 +143,12 @@ Make sure to backup your data frequently.`,
"type": "measure",
"prefix": "postgres.datastore",
"child": map[string]interface{}{
"type": "postgres",
"path": "postgres",
"syncWrites": true,
"type": "postgres",
"host": os.Getenv("IPFS_PGHOST"),
"user": os.Getenv("IPFS_PGUSER"),
"passfile": os.Getenv("IPFS_PGPASSFILE"),
"password": os.Getenv("IPFS_PGPASSWORD"),
"dbname": os.Getenv("IPFS_PGDATABASE"),
},
}
return nil
Expand Down

0 comments on commit abc8b69

Please sign in to comment.