Skip to content

A Next.js full-stack boilerplate with type-safe end-to-end GraphQL API connection, authorization and authentication

License

Notifications You must be signed in to change notification settings

devchristam/nextjs-graphql-fullstack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

fb7d07a · Sep 10, 2022

History

4 Commits
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 10, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022
Sep 9, 2022

Repository files navigation

NextJS GraphQL Fullstack Template

A Next.js full-stack boilerplate with type-safe end-to-end GraphQL API connection, authorization and authentication

Features

Getting started

npx degit devchristam/nextjs-graphql-fullstack my-next-app
cd my-next-app
pnpm i

Checklist

When you use this template, follow this checklist to update your info properly

  • Change the author name in LICENSE
  • Change the project name in package.json
  • Run cp .env.sample .env and fill in your info in .env
  • Clean up demonstration code (browse posts, read post)
    • ./src/frontend
    • ./src/pages
    • ./src/server
    • ./prisma/schema.prisma
  • Clean up the README.md

Usage

Set up database

pnpm run prisma:db-push

recommend to use PlatnetScale for your mysql database, if you don't want to use planetscale for development, you can run docker-compose up -d for a mysql image.

Development

pnpm run dev

run the dev server at http://localhost:3000, you can visit http://localhost:3000/api/graphql for graphiql (disable at production)

pnpm run codegen

run graphql codegen to generate frontend code, all the generated code will located at ./src/generated/*

the ./src/generated/schema.gql is generated by typegraphql automatically on every build of the schema (link), please make sure run the pnpm run codegen command after the new ./src/generated/schema.gql is generated

pnpm run dev:codegen

if you want to run the graphql codegen in watch mode and run the dev server concurrently

Build

pnpm run build
# run graphql codegen and build nextjs
pnpm run build:codegen