Skip to content
Cross-platform client for PostgreSQL databases
Go JavaScript PLpgSQL HTML CSS Shell Other
Branch: master
Clone or download

Latest commit

Latest commit 82b2918 Mar 28, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github/workflows Build binaries for github.ref Feb 12, 2020
config Rename examples to config, it's a proper name Sep 27, 2017
data Add cockroachdb smoke test Jun 5, 2018
pkg Show results row context menu on custom query results Mar 16, 2020
screenshots Update screenshots Jan 10, 2016
script Fix postgres runs in test-all script Mar 16, 2020
static Show results row context menu on custom query results Mar 16, 2020
vendor Add support for encrypted ssh keys Nov 2, 2019
.dockerignore Add dockerignore Dec 16, 2019
.gitattributes Do not show bindata.go in the git diff log Jan 8, 2016
.gitignore Add .idea to gitignore Nov 16, 2019
.travis.yml Run CI on 1.14 Mar 28, 2020
CHANGELOG.md Update docker version, changelog Feb 20, 2020
CONTRIBUTING.md Specify how to run all tests Jun 6, 2017
Dockerfile Update docker version, changelog Feb 20, 2020
Gopkg.lock Add support for encrypted ssh keys Nov 2, 2019
Gopkg.toml Update heroku go version to 1.13 Nov 2, 2019
LICENSE License years update Feb 12, 2020
Makefile Add dockerignore Dec 16, 2019
Procfile Bind to 0.0.0.0 in Procfile Nov 6, 2014
README.md Remove contact section Feb 12, 2020
SCREENS.md Update screenshots Jan 10, 2016
app.json Merge pull request #90 from freeformz/patch-2 Jul 15, 2015
appveyor.yml Update go test script Sep 1, 2018
main.go Move all CLI logic into its own package May 17, 2017

README.md

pgweb

Web-based PostgreSQL database browser written in Go.

Release Linux Build Windows Build Go Report Card GoDoc Docker Pulls

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

  • Cross-platform support OSX/Linux/Windows 32/64-bit
  • Simple installation (distributed as a single binary)
  • Zero dependencies
  • Works with PostgreSQL 9.1+
  • SSH Connections
  • Multiple database sessions
  • Simple database browser
  • Execute and analyze custom SQL queries
  • Table and query data export to CSV/JSON/XML
  • Query history
  • Server bookmarks

Visit WIKI for more details

Pgweb Pro

Pgweb Pro is the next major version of Pgweb and includes features like:

  • Table structure editing
  • Data editing (update row content)
  • Charting
  • History persistence
  • Multiple tabs

Please get in touch via: https://goo.gl/forms/euQOGWg5uPdPH70b2

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

If you're using Docker locally, you might also run pgweb test suite against all supported PostgreSQL version with a single command:

make test-all

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

License

The MIT License (MIT). See LICENSE file for more details.

You can’t perform that action at this time.