mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
3696d92743
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> GitOrigin-RevId: cfef3585b120d82cafe5343cfceddbcd05969a15 |
||
---|---|---|
.. | ||
auth-server | ||
hasura | ||
react-app | ||
README.md |
WhatsApp Clone
The react client is a forked version of urigo/whatsapp-client-react and the server is backed by Hasura GraphQL Engine
- Checkout the live app.
- Explore the backend using Hasura Console.
Running the app yourself
Deploy Postgres and GraphQL Engine on Hasura:
-
Deploy GraphQL Engine on Hasura Cloud and setup PostgreSQL via Heroku:
-
Get the Hasura app URL (say
whatsapp-clone.hasura.app
) -
Clone this repo:
git clone https://github.com/hasura/graphql-engine cd graphql-engine/community/sample-apps/whatsapp-clone-typescript-react
-
Apply the migrations:
cd hasura hasura migrate apply --endpoint "https://whatsapp-clone.hasura.app"
Run the auth server
cd auth-server
-
Set the environment variables in
.env
-
Install and run the app
npm install
npm start
Run the react app
cd react-app
- Set the environment variables in
.env
yarn install
-
Modify the codegen.yml to include the correct endpoint and headers
-
Generate the graphql types by running
gql-gen
This would generate the required types in src/graphql/types
- Run the app
yarn start