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)
- Host: GitHub
- URL: https://github.com/hardyscc/type-graphql-series
- Owner: hardyscc
- Created: 2019-02-27T08:35:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-18T06:57:46.000Z (over 7 years ago)
- Last Synced: 2025-01-14T00:32:55.920Z (over 1 year ago)
- Language: TypeScript
- Size: 644 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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