https://github.com/pyramation/webql
🔥create the PostGraphile explorer for EVERY database and schema on your machine
https://github.com/pyramation/webql
Last synced: 5 months ago
JSON representation
🔥create the PostGraphile explorer for EVERY database and schema on your machine
- Host: GitHub
- URL: https://github.com/pyramation/webql
- Owner: pyramation
- License: mit
- Created: 2020-05-20T04:43:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T06:26:46.000Z (over 3 years ago)
- Last Synced: 2025-10-18T19:31:47.820Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 3.4 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webql
Creates the PostGraphile explorer for *EVERY* database and schema on your machine.
```sh
npm install -g @webql/cli
```
Then run the explorer!
```
webql
```
Should be running on http://localhost:5555
## the idea
the idea is to use this for development only, as your `postgres` user. Don't deploy this in production.
## changing port
```sh
export SERVER_PORT=5656
webql
```
## troubleshooting
currently these are the assumptions, you can export them if you have your own values:
```sh
PGUSER=postgres
PGHOST=localhost
PGPASSWORD=password
PGPORT=5432
```
If you have your own password for example
```sh
export PGPASSWORD=mypassword
webql -p 5656
```