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

https://github.com/hardyscc/type-graphql-series

type-graphql-series (from Ben Awad)
https://github.com/hardyscc/type-graphql-series

Last synced: about 2 months ago
JSON representation

type-graphql-series (from Ben Awad)

Awesome Lists containing this project

README

          

# start a docker instance of postgres, redis

docker run --name some-redis -p 6379:6379 -d redis
docker run --name some-postgres -p 5432:5432 -d -e POSTGRES_DB=typegraphql-example -e POSTGRES_PASSWORD=postgres postgres

# start a command line instance of postgres, redis

docker run -it --rm --link some-redis:redis redis redis-cli -h redis -p 6379
docker run -it --rm --link some-postgres:postgres postgres psql -h postgres -U postgres typegraphql-example