Cross-platform client for PostgreSQL databases
Go to file
2014-12-17 21:38:30 -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 Add prefix /api to all service calles 2014-12-13 20:40:25 -06:00
.gitignore Add tmp to gitignore 2014-12-02 18:46:50 -06:00
.travis.yml Try to build on go1.4 2014-12-10 23:48:20 -06:00
api.go Add prefix /api to all service calles 2014-12-13 20:40:25 -06:00
app.json Fix identation in app.json and add icon url 2014-11-06 10:19:15 -06:00
bindata.go Add prefix /api to all service calles 2014-12-13 20:40:25 -06:00
bookmarks.go Add bookmark dropdown to connection settings ui 2014-12-06 20:04:32 -06:00
CHANGELOG.md Changelog: release date 2014-12-01 21:04:24 -06:00
client.go Print connection string when creating a new client with debug option 2014-12-12 18:21:40 -06:00
connection_string_test.go Add connection string builder 2014-12-17 21:32:50 -06:00
connection_string.go Add connection string builder 2014-12-17 21:32:50 -06:00
Dockerfile Run dep restore and build as separate commands in dockerfile 2014-11-10 12:54:41 -06:00
LICENSE License, readme 2014-10-13 21:02:04 -05:00
main.go Define cli options struct 2014-12-16 20:25:40 -06:00
Makefile Makefile changes 2014-12-13 20:43:07 -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 Moar readme 2014-12-10 23:43:17 -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 Build Status

Overview

This is a web-based browser for PostgreSQL database server. Its written in Go and works on Mac OSX, Linux and Windows machines. Main idea behind using Go for the backend is to utilize language's ability for cross-compile source code for multiple platforms. This project is an attempt to create a very simple and portable application to work with PostgreSQL databases.

Features:

  • Connect to local or remote server
  • Browse tables and table rows
  • Get table details: structure, size, indices, row count
  • Execute SQL query and run analyze on it
  • Export query results to CSV
  • View query history
  • Save server bookmarks

Visit wiki Pages for more details

Installation

Precompiled binaries for supported operating systems are available.

Check wiki for 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

Contributing

  • 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 Dan Sosedoff, dan.sosedoff@gmail.com