Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hoa-uit/fullstack-nextjs-strapi-blog

Complete website with nextjs and strapi, reponsive and deploy on heroku and vercel / tạo một website hoàn chỉnh với nextjs, strapi
https://github.com/hoa-uit/fullstack-nextjs-strapi-blog

blog full heroku nextjs strapi vercel

Last synced: 18 days ago
JSON representation

Complete website with nextjs and strapi, reponsive and deploy on heroku and vercel / tạo một website hoàn chỉnh với nextjs, strapi

Awesome Lists containing this project

README

        

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started

#SETUP BACKEND (STRAPI APP)

Clone branch backend
Or create by yourself:
```bash
npx create-strapi-app backend
```
Then, run the development server:
```
cd backend
yarn run develop
```

#SETUP FRONTEND (NEXTJS-APP)

Clone branch main
Or create by yourself:
```bash
npx create-next-app frontend
```
Then, run the development server:
```
cd frontend
yarn dev
```
#REQUIRED PLUGIN/LIBRARY
Axios
```
$ npm install axios
```
Markdown-it
```
npm install markdown-it --save
```
Fontawesome
```
npm install @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons @fortawesome/react-fontawesome
```
Format date/time with moment
```
npm i moment
```