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.
-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 [email protected]
- 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