Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bitquery/graphql-ide
- Owner: bitquery
- Created: 2020-10-05T16:13:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-29T09:53:11.000Z (8 months ago)
- Last Synced: 2024-03-29T10:30:01.998Z (8 months ago)
- Language: JavaScript
- Size: 16.6 MB
- Stars: 20
- Watchers: 5
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: README-DOCKER-BUILD.md
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`
```