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

https://github.com/discoveryjs/graphiql

GraphiQL web IDE with Discovery.js integrated in it
https://github.com/discoveryjs/graphiql

Last synced: about 1 year ago
JSON representation

GraphiQL web IDE with Discovery.js integrated in it

Awesome Lists containing this project

README

          

## GraphiQL with Discovery.js as result viewer

### Start server

```bash
GRAPHQL_ENDPOINT=https://your.endpoint/graphql npm start
```

Run in dev mode:

```bash
GRAPHQL_ENDPOINT=https://your.endpoint/graphql npm run dev
```

### Docker

Pull image and run it with `TITLE` and `GRAPHQL_ENDPOINT` env variables

```bash
docker pull discoveryjs/graphiql
docker run -p 3000:3000 -e GRAPHQL_ENDPOINT=https://your.endpoint/graphql -e TITLE="Some title" discoveryjs/graphiql
```

### Build

```
npm run build
```

Results will be placed in `dist` folder.