Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rttmoa/reactjs-nextjs-koa2
SSR server rendering imitates GitHub full stack
https://github.com/rttmoa/reactjs-nextjs-koa2
koajs lru-cache markdown nextjs oauth reactjs redis redux styled-components
Last synced: about 1 month ago
JSON representation
SSR server rendering imitates GitHub full stack
- Host: GitHub
- URL: https://github.com/rttmoa/reactjs-nextjs-koa2
- Owner: rttmoa
- Created: 2023-03-06T11:40:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T03:03:57.000Z (4 months ago)
- Last Synced: 2024-12-06T08:04:34.350Z (about 1 month ago)
- Topics: koajs, lru-cache, markdown, nextjs, oauth, reactjs, redis, redux, styled-components
- Language: JavaScript
- Homepage:
- Size: 40.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### redis
##### centos 安装
更新安装源来安装最新得包
```
sudo yum install epel-release
sudo yum update
```安装 redis
```
sudo yum install redis
```后台启动 redis
```
sudo systemctl start redis
```设置开机启动 redis
```
sudo systemctl enable redis
```