Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bitquery/graphql-ide

IDE for GraphQL development
https://github.com/bitquery/graphql-ide

Last synced: 19 days ago
JSON representation

IDE for GraphQL development

Awesome Lists containing this project

README

        

# Build

```
docker build \
--build-arg SCHEME=http \
--build-arg HOST=172.16.157.1 \
--build-arg PORT=5000 \
-t nexus.bitq.dev/repository/bitquery/graphql-ide:`git branch | awk '/\*/ {print $2}'`-`git rev-parse --short HEAD` .
```

# Make an alias latest
```
docker image tag \
nexus.bitq.dev/repository/bitquery/graphql-ide:`git branch | awk '/\*/ {print $2}'`-`git rev-parse --short HEAD` \
nexus.bitq.dev/repository/bitquery/graphql-ide:latest
```

# Login to registry

```
apt install gnupg2 pass
docker login -u https://nexus.bitq.dev
```

# Push image tags

```
docker image push nexus.bitq.dev/repository/bitquery/graphql-ide:`git branch | awk '/\*/ {print $2}'`-`git rev-parse --short HEAD`
docker image push nexus.bitq.dev/repository/bitquery/graphql-ide:latest
```

# Run container

```
docker run -d \
--name graphql-ide \
--dns 10.0.0.254 \
--dns-search etl-cluster.local \
--env-file .env \
-p 127.0.0.1:5000:5000 \
nexus.bitq.dev/repository/bitquery/graphql-ide:`git branch | awk '/\*/ {print $2}'`-`git rev-parse --short HEAD`
```