Cross-platform client for PostgreSQL databases
Go to file
2014-10-10 21:25:02 -05:00
bin Update binary 2014-10-10 20:43:04 -05:00
static Add static dir 2014-10-09 19:05:51 -05:00
.gitignore Initial 2014-10-08 21:26:57 -05:00
api.go Move query history slice into client struct 2014-10-10 21:25:02 -05:00
API.md README 2014-10-10 21:06:08 -05:00
client.go Move query history slice into client struct 2014-10-10 21:25:02 -05:00
main.go Move query history slice into client struct 2014-10-10 21:25:02 -05:00
Makefile Make clean 2014-10-10 17:32:47 -05:00
README.md README 2014-10-10 21:06:08 -05:00

pgweb

Web-based PostgreSQL database browser written in Go.

Usage

CLI options:

-h, --host= Server hostname or IP (localhost)
-p, --port= Server port (5432)
-u, --user= Database user (postgres)
-d, --db=   Database name (postgres)
    --url=  Database connection string (postgresql://...)
    --ssl=  SSL option (disable)

Compile from source

Go 1.3+ is required. You can install Go with homebrew:

brew install go

To compile source code run the following command:

go get
go build

This will produce pgweb binary in the current directory.