An open API service indexing awesome lists of open source software.

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.

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/

ss-next-clean-blog

## 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
```