rsnext/examples/with-nhost-auth-realtime-graphql
Craig Wheeler 57426a2849
Update Examples to use React 18 (#42027)
This PR updates the minimum version of React used by examples from 17.0.2 to 18.2.0.

Fixes #41975

## Bug

- [x] Related issues linked using `fixes #41975`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have a helpful link attached, see `contributing.md`

## Documentation / Examples

- [x] Make sure the linting passes by running `pnpm build && pnpm lint`
- [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-10-28 17:43:20 +00:00
..
components example: Nhost with auth and realtime graphql example added (#22493) 2021-02-24 14:18:05 +00:00
pages example: Nhost with auth and realtime graphql example added (#22493) 2021-02-24 14:18:05 +00:00
setup example: Nhost with auth and realtime graphql example added (#22493) 2021-02-24 14:18:05 +00:00
utils example: Nhost with auth and realtime graphql example added (#22493) 2021-02-24 14:18:05 +00:00
.env.local.example example: Nhost with auth and realtime graphql example added (#22493) 2021-02-24 14:18:05 +00:00
.gitignore Update default gitignore templates (#39051) 2022-07-26 20:08:40 -05:00
package.json Update Examples to use React 18 (#42027) 2022-10-28 17:43:20 +00:00
README.md Update pnpm create next-app for latest pnpm 6 and 7 (#37254) 2022-05-27 21:21:40 +00:00

Auth & Realtime GraphQL Example Using Next.js and Nhost

This example showcases Next.js as the frontend using Nhost as the backend.

Demo

https://nhost-nextjs-example.vercel.app/

Deploy Your Own

Once you have created a Nhost project and have access to the environment variables you'll need, deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-nhost-auth-realtime-graphql nhost-app
# or
yarn create next-app --example with-nhost-auth-realtime-graphql nhost-app
# or
pnpm create next-app --example with-nhost-auth-realtime-graphql nhost-app

Configuration

Step 1. Create an account and a project on Nhost

Create an account and project on Nhost.

Step 2. Create items database

Go to your project's Hasura console. Go to the DATA tab in the top menu and click SQL in the bottom left menu.

Then copy the content from setup/data.sql in this example and paste it in the Raw SQL form in the Hasura Console. Make sure Track this is checked and click Run!

Step 3. Add API metadata

Again, in the Hasura console, click on the gearwheel (settings) in the top right menu. Click on Import metadata and select the file setup/hasura-metadata.json in this repository.

Step 4. Add environment variables

Copy .env.local.example to .env.local and update the two URLs with your Nhost project URLs. You find the URLs in the Nhost console dashboard of your project.

Step 5. Run Next.js in development mode

npm install
npm run dev

# or

yarn install
yarn dev

Your app should be up and running on http://localhost:3000! If it doesn't work, post on GitHub discussions.

Step 6. Deploy on Vercel

You can deploy this app to the cloud with Vercel (Documentation).