/prisma-graphql-api

this is a blog graphql api that allow me to test my knowledge about graphql and prisma.

Primary LanguageJavaScript

Description 🧩

This is an GraphQl API that allow me to test my knowledge about GraphQl and PRISMA. I also implement all the authentication process and plan to implement caching process.

Made By JoeDaltonGeekVersion

Run the project ✅

-You need to install docker-compose, you can do it via this link Install docker-compose

-after install prisma version 1.12.3 Prisma 1 Docs

npm install -g prisma@1.12.3
  • after that type cd prisma-graphql and create in the main folder a .env file and fill in these fields
db_connector = postgres
db_host =
db_port=
db_name=
db_user=
db_password=

after run those command

 npm install
 cd prisma
 docker-compose --env-file ../.env  up -d
 prisma deploy
 cd..
 npm run dev