Cross-platform client for PostgreSQL databases
Go to file
2016-01-14 16:55:05 -06:00
data Move all test data under ./data dir 2015-03-16 23:41:53 -05:00
Godeps Fix issue with missing packages 2016-01-14 16:39:55 -06:00
pkg Use anonymous structs in the test 2016-01-14 16:55:05 -06:00
screenshots Update screenshots 2016-01-10 16:08:13 -06:00
script Print SHA sum for binary when packaging 2015-06-18 13:14:54 -05:00
static Remove unused sequences code 2016-01-12 22:05:32 -06:00
.gitattributes Do not show bindata.go in the git diff log 2016-01-08 15:34:02 -06:00
.gitignore Add sample coverage file to gitignore 2015-03-04 08:53:41 -06:00
.travis.yml Switch travis to use postgres 9.4 2016-01-12 21:37:38 -06:00
app.json Merge pull request #90 from freeformz/patch-2 2015-07-14 21:19:55 -05:00
appveyor.yml Fix appveyor builds 2016-01-04 18:51:25 -06:00
CHANGELOG.md Changelog 2016-01-11 12:27:26 -06:00
CONTRIBUTING.md Contributing guidelines 2015-05-20 21:50:22 -05:00
Dockerfile Update dockerfile to use golang 1.5 image 2016-01-05 14:11:45 -06:00
LICENSE Readme, license 2016-01-05 00:41:50 -06:00
main.go Initial support for multiple schemas 2016-01-12 21:33:44 -06:00
Makefile Tweak packaging script 2015-05-06 21:31:05 -05:00
Procfile Bind to 0.0.0.0 in Procfile 2014-11-05 22:15:05 -06:00
README.md Update readme 2016-01-10 15:41:07 -06:00
SCREENS.md Update screenshots 2016-01-10 16:08:13 -06:00

pgweb

Web-based PostgreSQL database browser written in Go.

Release Linux Build Windows Build

Overview

Pgweb is a web-based database browser for PostgreSQL, written in Go and works on OSX, Linux and Windows machines. Main idea behind using Go for backend development is to utilize ability of the compiler to produce zero-dependency binaries for multiple platforms. Pgweb was created as an attempt to build very simple and portable application to work with local or remote PostgreSQL databases.

See application screenshots

Features

  • Works on OSX, Linux and Windows
  • Zero dependencies
  • Simple installation (distributes as a single binary)
  • Connect to local or remote servers
  • Multiple database sessions
  • Browse tables and table rows
  • Get table details: structure, size, indeces, row count
  • Run and analyze custom SQL queries
  • Export table rows and query results to CSV/JSON/XML
  • Query history
  • Server bookmarks

Visit WIKI for more details

Demo

Visit https://pgweb-demo.herokuapp.com to see pgweb in action.

Installation

Precompiled binaries for supported operating systems are available.

More installation options

Usage

Start server:

pgweb

You can also provide connection flags:

pgweb --host localhost --user myuser --db mydb

Connection URL scheme is also supported:

pgweb --url postgres://user:password@host:port/database?sslmode=[mode]

Multiple database sessions

To enable multiple database sessions in pgweb, start the server with:

pgweb --sessions

Or set environment variable:

SESSIONS=1 pgweb

Deploy on Heroku

Heroku Deploy

Testing

Before running tests, make sure you have PostgreSQL server running on localhost:5432 interface. Also, you must have postgres user that could create new databases in your local environment. Pgweb server should not be running at the same time.

Execute test suite:

make test

Contribute

  • Fork this repository
  • Create a new feature branch for a new functionality or bugfix
  • Commit your changes
  • Execute test suite
  • Push your code and open a new pull request
  • Use issues for any questions
  • Check wiki for extra documentation

Contact

License

The MIT License (MIT)

Copyright (c) 2014-2016 Dan Sosedoff, dan.sosedoff@gmail.com