Cross-platform client for PostgreSQL databases
Go to file
2014-10-11 22:39:27 -05:00
static More stuff 2014-10-11 13:03:51 -05:00
.gitignore Remove binary fro repo 2014-10-10 21:27:40 -05:00
api.go Add /explain endpoint 2014-10-11 13:24:12 -05:00
API.md Update docs 2014-10-11 13:40:15 -05:00
client.go Use db.Ping to test connection 2014-10-11 22:38:32 -05:00
main.go Use db.Ping to test connection 2014-10-11 22:38:32 -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.