{"id":15163304,"url":"https://github.com/michaelclemens/nextjs-boilerplate","last_synced_at":"2026-02-14T22:03:04.414Z","repository":{"id":257621904,"uuid":"858802515","full_name":"michaelclemens/nextjs-boilerplate","owner":"michaelclemens","description":"Next.js boilerplate including Prisma ORM, PostgreSQL container, Jest + React Testing Library, Prettier \u0026 GitHub Actions","archived":false,"fork":false,"pushed_at":"2025-01-30T15:38:41.000Z","size":605,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-30T16:35:51.533Z","etag":null,"topics":["boilerplate","boilerplate-template","github-actions","jest","nextjs14","postgresql","prettier","prisma-orm","react-testing-library","react18","template"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaelclemens.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-17T15:01:34.000Z","updated_at":"2025-01-30T15:38:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"a6b257fb-580a-468c-beaa-450b45c558b4","html_url":"https://github.com/michaelclemens/nextjs-boilerplate","commit_stats":{"total_commits":13,"total_committers":3,"mean_commits":4.333333333333333,"dds":0.3846153846153846,"last_synced_commit":"8858c53817cc01912c0d16e0bac748106b392faa"},"previous_names":["michaelclemens/nextjs-boilerplate"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelclemens%2Fnextjs-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelclemens%2Fnextjs-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelclemens%2Fnextjs-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelclemens%2Fnextjs-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaelclemens","download_url":"https://codeload.github.com/michaelclemens/nextjs-boilerplate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238059129,"owners_count":19409601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boilerplate","boilerplate-template","github-actions","jest","nextjs14","postgresql","prettier","prisma-orm","react-testing-library","react18","template"],"created_at":"2024-09-27T02:22:55.546Z","updated_at":"2025-10-25T02:30:35.571Z","avatar_url":"https://github.com/michaelclemens.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Next.js Boilerplate ![GitHub CI](https://github.com/michaelclemens/nextjs-boilerplate/actions/workflows/ci.yml/badge.svg)\n\n## Overview\n\n[Next.js 14 with App Router](https://nextjs.org/docs) boilerplate template including:\n\n### Base Next.js 14\n\n- ⚛️ [React 18](https://18.react.dev/)\n- ✨ [TypeScript](https://www.typescriptlang.org/docs/)\n- 💨 [Tailwind CSS 3](https://tailwindcss.com/docs)\n- 📏 [ESLint](https://eslint.org/docs)\n\n### Additional\n\n- 🌈 [Prisma ORM](https://www.prisma.io/docs/orm)\n- 🐘 [PostgreSQL 16](https://www.postgresql.org/docs/16/index.html) (docker-compose container)\n- 🃏 [Jest](https://jestjs.io/docs) + [React Testing Library](https://testing-library.com/docs/react-testing-library/intro/)\n- 💖 [Prettier](https://prettier.io/docs/en/)\n- 👷 [GitHub Actions](https://docs.github.com/en/actions) (CI + Dependabot config)\n\n## Getting started 🚀\n\n### 1. Install dependencies\n\nInstall npm dependencies:\n\n```\nnpm ci\n```\n\n### 2. Create and seed the database\n\nIf you're using Docker on your computer, the following script will set up a PostgreSQL database using the `docker-compose.yml` file at the root of\nyour project:\n\n```\nnpm run db:up\n```\n\n[Model your data in the Prisma schema](https://www.prisma.io/docs/getting-started/quickstart#2-model-your-data-in-the-prisma-schema) by editing the\n[`prisma/schema.prisma`](./prisma/schema.prisma) fiile\n\nRun the following command to create your PostgreSQL database:\n\n```\nnpx prisma migrate dev --name init\n```\n\nWhen `npx prisma migrate dev` is executed against a newly created database, seeding is also triggered. To add seeding, create a\n[`seed file`](https://www.prisma.io/docs/getting-started/quickstart#2-model-your-data-in-the-prisma-schema) in [`prisma/seed.ts`](./prisma/seed.ts)\nand it will be executed against your database.\n\n### 3. Configuring your environment\n\n```\ncp .env.example .env\n```\n\nEnsure these variables are correct.\n\n### 4. Start the app\n\n```\nnpm run dev\n```\n\nThe app is now running, navigate to [`http://localhost:3000/`](http://localhost:3000/) in your browser to explore its UI.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the\n[Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme)\nfrom the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelclemens%2Fnextjs-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelclemens%2Fnextjs-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelclemens%2Fnextjs-boilerplate/lists"}