Cross-platform client for PostgreSQL databases
Go to file
2015-05-19 15:19:12 -05:00
data Move all test data under ./data dir 2015-03-16 23:41:53 -05:00
Godeps Update gin to 0.5.0 2015-02-09 01:31:16 -06:00
pkg Implement table item context menu 2015-05-19 12:24:59 -05:00
screenshots Update screenshots 2015-05-19 12:57:24 -05:00
script Tweak packaging script 2015-05-06 21:31:05 -05:00
static Implement table item context menu 2015-05-19 12:24:59 -05:00
.gitignore Add sample coverage file to gitignore 2015-03-04 08:53:41 -06:00
.travis.yml Remove go tip from travis config for now 2015-04-20 21:30:55 -05:00
app.json Fix identation in app.json and add icon url 2014-11-06 10:19:15 -06:00
appveyor.yml Set test command for appveyor 2015-05-19 15:19:12 -05:00
CHANGELOG.md Changelog 2015-05-06 21:03:00 -05:00
Dockerfile Fix docker build and specify bind interface for command 2015-04-30 20:22:08 -05:00
LICENSE 2015 2014-12-31 18:33:06 -06:00
main.go Move version definition into command package, include build timestamp, add /api/info endpoint 2015-05-05 00:34:23 -05: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 Tweak readme 2015-05-18 16:28:05 -05: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.

Features

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

Visit WIKI for more details

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]

Deploy on Heroku

Heroku Deploy

Testing

Run tests:

make test

Contribute

  • Fork repository
  • Create a feature or bugfix branch
  • Open a new pull request
  • Use github issues for any questions

Contact

License

The MIT License (MIT)

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