https://github.com/gonzaloplaza/nextjs-starter
Next.js 15 starter template: Nodejs 22, TypeScript, React 19, shadcn ui, Docker
https://github.com/gonzaloplaza/nextjs-starter
next-starter next-starter-template nextjs nextjs15 react react19-starter shadcn shadcn-ui
Last synced: about 1 month ago
JSON representation
Next.js 15 starter template: Nodejs 22, TypeScript, React 19, shadcn ui, Docker
- Host: GitHub
- URL: https://github.com/gonzaloplaza/nextjs-starter
- Owner: gonzaloplaza
- License: mit
- Created: 2025-01-18T13:07:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-20T19:46:10.000Z (over 1 year ago)
- Last Synced: 2025-03-12T09:44:58.258Z (about 1 year ago)
- Topics: next-starter, next-starter-template, nextjs, nextjs15, react, react19-starter, shadcn, shadcn-ui
- Language: TypeScript
- Homepage:
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nextjs-starter
[](https://www.typescriptlang.org/)

[](https://opensource.org/licenses/mit-license.php)
## Getting Started
First, run the development server:
```bash
pnpm install
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically
optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
### Build Docker image for production
You can build an optimized Docker production-ready image with the standard command:
```sh
docker build -t nextjs-starter .
```
And then run the container passing environment variables if needed within the initialization:
```sh
docker run --rm -it -p 3000:3000 --name nextjs-starter nextjs-starter
```
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions
are welcome!