- Postgres – Installation
Local installation Go here and download postgresql Double click on the downloaded file to install postgresql Postgresql with docker Pull postgresql docker image # pull latest image docker pull postgres # pull a specific version docker pull postgres:12 Run postgres container # run latest container…
- Postgres – Introduction
PostgreSQL is an advanced, enterprise-class, and open-source relational database system. PostgreSQL supports both SQL (relational) and JSON (non-relational) querying. PostgreSQL is a highly stable database backed by more than 20 years of development by the open-source community. PostgreSQL…
- Hasura – Installation
Local Installation Hasura depends on Postgresql so make sure you have Postgresql installed on your local computer. Run locally with existing Postgresql Hasura with docker # pull latest image docker pull hasura/graphql-engine:latest # run in container docker run -d -p 8080:8080 \ -e…
- Hasura – Authentication
Handling authentication correctly is a key step in ensuring the security of your application in production. This is a very important component of any backend system. There are multiple ways to be authenticated but in this post I will focus on JWT authentication. Ways to authenticate users for your…
- Hasura – Introduction
Hasura is a GraphQL engine that makes your data instantly accessible over a real-time GraphQL API, so you can build and ship modern apps and APIs faster. Hasura connects to your databases, REST servers, GraphQL servers, and third party APIs to provide a unified realtime GraphQL API across all your…