An open API service indexing awesome lists of open source software.

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

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
```