https://github.com/eggplants/harusa-posgresql-docker-test
harusa+posgresql+docker-compose
https://github.com/eggplants/harusa-posgresql-docker-test
Last synced: 5 months ago
JSON representation
harusa+posgresql+docker-compose
- Host: GitHub
- URL: https://github.com/eggplants/harusa-posgresql-docker-test
- Owner: eggplants
- Created: 2022-05-24T09:55:26.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T23:15:38.000Z (about 4 years ago)
- Last Synced: 2025-02-06T06:44:21.557Z (over 1 year ago)
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Play with Hasura+PostgreSQL!
## Usage
- Launch
```bash
docker-compose up -d # compose V1
docker compose up -d # compose V2
```
- Web Interface
- PosgreSQL Server
`postgres://postgres:postgrespassword@postgres:5432/postgres`
- Stop
```bash
docker stop
```
- Clean up
```bash
docker-compose down # compose V1
docker compose down # compose V2
```
## TIPS
- Schema
```bash
npm -g get-graphql-schema
get-graphql-schema http://localhost:8080/v1/graphql > schema.gql
```