Update go-jet to support CircleCi build.
This commit is contained in:
parent
17f6bab2e7
commit
454cd6f12b
16 changed files with 297 additions and 251 deletions
|
|
@ -5,9 +5,9 @@ import "fmt"
|
|||
const (
|
||||
Host = "localhost"
|
||||
Port = 5432
|
||||
User = "postgres"
|
||||
Password = "postgres"
|
||||
DBName = "dvd_rental"
|
||||
User = "jet"
|
||||
Password = "jet"
|
||||
DBName = "jetdb"
|
||||
)
|
||||
|
||||
var ConnectString = fmt.Sprintf("host=%s port=%d user=%s "+"password=%s dbname=%s sslmode=disable", Host, Port, User, Password, DBName)
|
||||
var ConnectString = fmt.Sprintf("host=%s port=%d user=%s password=%s dbname=%s sslmode=disable", Host, Port, User, Password, DBName)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue