Cross-platform client for PostgreSQL databases
Go to file
2015-01-03 00:54:08 -06:00
Godeps Add testify to godep 2014-12-17 21:38:30 -06:00
screenshots Update screenshots take 2 2014-10-26 18:28:51 -05:00
static Do not render bookmarks if api returned error 2014-12-31 18:20:40 -06:00
.gitignore Add tmp to gitignore 2014-12-02 18:46:50 -06:00
.travis.yml Update travis config 2014-12-17 21:39:28 -06:00
api_test.go Switch to mime standard lib for mime-type detection 2015-01-03 00:45:03 -06:00
api.go Add more missing mime types 2015-01-03 00:54:08 -06:00
app.json Fix identation in app.json and add icon url 2014-11-06 10:19:15 -06:00
appveyor.yml Add appveyor integration to build/test on windows 2015-01-02 14:22:54 -06:00
bindata.go Do not render bookmarks if api returned error 2014-12-31 18:20:40 -06:00
bookmarks.go Add bookmark dropdown to connection settings ui 2014-12-06 20:04:32 -06:00
CHANGELOG.md Update changelog 2015-01-02 12:53:42 -06:00
client.go Fix debug connection string output 2014-12-17 21:59:43 -06:00
connection_string_test.go Test blank connection options 2014-12-17 21:56:15 -06:00
connection_string.go Test blank connection options 2014-12-17 21:56:15 -06:00
Dockerfile Update dockerfile 2014-12-26 23:57:30 -06:00
LICENSE 2015 2014-12-31 18:33:06 -06:00
main.go Swtich to use new connection string builder function 2014-12-17 21:59:26 -06:00
Makefile Better description for make docker 2014-12-31 18:47:21 -06:00
Procfile Bind to 0.0.0.0 in Procfile 2014-11-05 22:15:05 -06:00
profiler.go Rename utils.go to profiler.go 2014-12-05 00:23:55 -06:00
README.md Readme: testing sections and build status on appveyor 2015-01-02 14:27:51 -06:00
statements.go Move statements out of Client 2014-11-21 20:47:33 +00:00

pgweb

Web-based PostgreSQL database browser written in Go.

Release

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

Continuos integration status:

  • Travis (Linux) - Build Status
  • Appveyor (Windows) - Build Status

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