https://github.com/danielfgray/postgres.garden
run postgres in your browser and see query results
https://github.com/danielfgray/postgres.garden
editor pglite postgres postgresql vscode wasm
Last synced: 6 months ago
JSON representation
run postgres in your browser and see query results
- Host: GitHub
- URL: https://github.com/danielfgray/postgres.garden
- Owner: DanielFGray
- License: mit
- Created: 2024-04-21T04:23:34.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2025-01-04T16:34:15.000Z (9 months ago)
- Last Synced: 2025-04-09T20:12:07.852Z (6 months ago)
- Topics: editor, pglite, postgres, postgresql, vscode, wasm
- Language: TypeScript
- Homepage: https://postgres.garden
- Size: 912 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# [Postgres Garden](https://postgres.garden)
a postgres IDE for your browser
## contributing
### prerequisites
- [bun](https://bun.sh/docs/installation)
- [docker](https://docs.docker.com/engine/install/)
- [docker-compose](https://docs.docker.com/compose/install/)### setup
after cloning the repo
```sh
bun i
bun setup
```the `setup` script will generate a `.env` file, launch postgres in docker, and run migrations
---
to run the whole dev server
```sh
bun dev
```to only run the client
```sh
bun dev:client
```or to only run the backend server
```sh
bun dev:server
```