https://github.com/DanielFGray/postgres.garden
run postgres in your browser and see query results
https://github.com/DanielFGray/postgres.garden
editor interactive monaco pglite postgres redux-toolkit wasm
Last synced: 3 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: 2024-09-17T04:46:06.000Z (about 1 year ago)
- Last Synced: 2024-09-18T04:58:09.309Z (about 1 year ago)
- Topics: editor, interactive, monaco, pglite, postgres, redux-toolkit, wasm
- Language: TypeScript
- Homepage: https://postgres-playground.dfg.codes
- Size: 406 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 12
-
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
```