Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kalepail/stellar-graphql-docker
Docker compose for running a Stellar Horizon and Core instance with GraphQL exposed
https://github.com/kalepail/stellar-graphql-docker
Last synced: about 5 hours ago
JSON representation
Docker compose for running a Stellar Horizon and Core instance with GraphQL exposed
- Host: GitHub
- URL: https://github.com/kalepail/stellar-graphql-docker
- Owner: kalepail
- Created: 2018-02-13T19:36:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-07T19:41:38.000Z (almost 6 years ago)
- Last Synced: 2024-08-07T08:08:16.463Z (3 months ago)
- Size: 7.81 KB
- Stars: 15
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stellar to GraphQL
Medium Article:
https://medium.com/@tyvdh/building-stellar-apps-36303d0e6f45Video Tutorials:
https://www.youtube.com/watch?v=qO1GhY3UeR8
https://www.youtube.com/watch?v=FdcTz3B-PH4
https://www.youtube.com/watch?v=8AnjmzTgry0Example Query Wiki:
https://github.com/TinyAnvil/stellar-graphql-docker/wiki## "Quick" Start
```bash
## Install Docker
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt-get update
apt-cache policy docker-ce
apt-get install -y docker-ce
systemctl status docker## Install Docker Compose
curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose## Install glysh-docker repo
git clone https://github.com/TinyAnvil/glysh-docker.git
cd glysh-docker## Run
docker-compose up
```