https://github.com/yudwig/next-clean-blog
A sample implementation for blog-app based on clean architecture using Next.js and TypeScript.
https://github.com/yudwig/next-clean-blog
atomic-design blog blog-theme clean-architecture markdown nextjs reactjs tailwindcss typescript vercel
Last synced: 2 months ago
JSON representation
A sample implementation for blog-app based on clean architecture using Next.js and TypeScript.
- Host: GitHub
- URL: https://github.com/yudwig/next-clean-blog
- Owner: yudwig
- License: mit
- Created: 2022-05-19T06:46:38.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-25T11:00:31.000Z (about 4 years ago)
- Last Synced: 2025-10-04T11:51:36.524Z (8 months ago)
- Topics: atomic-design, blog, blog-theme, clean-architecture, markdown, nextjs, reactjs, tailwindcss, typescript, vercel
- Language: TypeScript
- Homepage: https://next-clean-blog.vercel.app
- Size: 2.47 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# next-clean-blog
A sample implementation for blog-app based on clean architecture using Next.js and TypeScript.
Deployed on Vercel: https://next-clean-blog.vercel.app/

## Tech Stack
| Category | Name | Link |
|:--|:--|:--|
| Language | TypeScript | https://www.typescriptlang.org/ |
| Framework | Next.js | https://nextjs.org/ |
| Library | React | https://reactjs.org/ |
| Architecture | Clean Architecture | https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html |
| UI Library | Tailwind CSS | https://tailwindcss.com/ |
| Code Formatter | Prettier | https://prettier.io/ |
| Design System | Atomic Design | https://atomicdesign.bradfrost.com/ |
## How to run
* Run the development server
```bash
$ yarn dev
```
* Run SSG and start production server
```bash
$ yarn build
$ yarn start
```