Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hoa-uit/fullstack-nextjs-strapi-blog
- Owner: hoa-uit
- Created: 2022-02-28T03:42:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-16T09:26:01.000Z (almost 3 years ago)
- Last Synced: 2024-11-14T22:20:37.998Z (3 months ago)
- Topics: blog, full, heroku, nextjs, strapi, vercel
- Language: SCSS
- Homepage: https://markintosh.vercel.app
- Size: 619 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```