Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 390 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 390 Bytes

XKE Go demo

Run

go run .

Build

go build

Watch

// install fresh pkg
go get github.com/pilu/fresh

// start watcher
fresh

DB

Update the db config to connect to your own postgres db

// fill in your db config here
const (
	host     = "localhost"
	user     = "postgres"
	password = "password"
	dbname   = "golangdb"
	port     = 5432
)