Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/newamericafoundation/postgres-db-explorer
Web interface to interactively explore the contents of a Postgres database.
https://github.com/newamericafoundation/postgres-db-explorer
Last synced: 12 days ago
JSON representation
Web interface to interactively explore the contents of a Postgres database.
- Host: GitHub
- URL: https://github.com/newamericafoundation/postgres-db-explorer
- Owner: newamericafoundation
- Created: 2015-10-28T22:44:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-30T13:36:13.000Z (about 9 years ago)
- Last Synced: 2024-03-26T06:51:45.036Z (10 months ago)
- Language: JavaScript
- Size: 536 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Postgres database explorer tool, with tools to browse, clean up and export the contents of a database. Built on ``React``, ``Express`` and modest code from scratch.
# Getting started
* Clone repository.
* Install dependencies by running ``npm install``.
* Create an ``.env`` file in root (ignored by git) with the database connection string (see ``.env-example`` for pattern).
* Run ``node server.js`` to run the explorer. This will take a minute because it also sets up fast module bundling if the client-side JavaScript is changed (webpack dev middleware).# Docs
* [explorer](/docs/explorer.md)
* [exporter](/docs/exporter.md)
* [testing](/docs/testing.md)