Cross-platform client for PostgreSQL databases
Go to file
2014-10-13 14:40:56 -05:00
static WIP 2014-10-13 13:55:19 -05:00
.gitignore Serve assets with bindata 2014-10-13 14:40:56 -05:00
api.go Serve assets with bindata 2014-10-13 14:40:56 -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 Serve assets with bindata 2014-10-13 14:40:56 -05:00
Makefile Serve assets with bindata 2014-10-13 14:40:56 -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.