Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xerrors/meco-ms
a manage system for Meco blog
https://github.com/xerrors/meco-ms
antd-vue echarts management-system vite vuejs
Last synced: 5 days ago
JSON representation
a manage system for Meco blog
- Host: GitHub
- URL: https://github.com/xerrors/meco-ms
- Owner: xerrors
- License: mit
- Created: 2021-04-09T01:57:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T07:21:52.000Z (over 2 years ago)
- Last Synced: 2024-05-27T19:28:00.745Z (6 months ago)
- Topics: antd-vue, echarts, management-system, vite, vuejs
- Language: Vue
- Homepage:
- Size: 681 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Meco MS
Meco Manage System
一个用于博客网站的后台管理系统,是从项目 [Gourd (废弃的)](https://github.com/xerrors/gourd) 的后台部分拆分而来。
**此项目依赖后端配置才能正常使用**,参考[Meco-Server](https://github.com/xerrors/meco-server);
控制台页面:
![](https://xerrors.oss-cn-shanghai.aliyuncs.com/imgs/20210822131624.png)
文章列表:
![](https://xerrors.oss-cn-shanghai.aliyuncs.com/imgs/20210822131850.png)
消息列表:
![](https://xerrors.oss-cn-shanghai.aliyuncs.com/imgs/20210822131915.png)
服务器日志:
![](https://xerrors.oss-cn-shanghai.aliyuncs.com/imgs/20210822131948.png)
文章编辑:
![](https://xerrors.oss-cn-shanghai.aliyuncs.com/imgs/20210822132117.png)
### 安装 node
默认安装的版本太低了,想要安装高版本的还是需要其他的办法的。
参考 [从 NodeSource 中安装 Node.js 和 npm](https://developer.aliyun.com/article/760687)
```sh
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
```安装 nodejs 和 [yarn](https://classic.yarnpkg.com/en/docs/install)
```sh
sudo apt-get install -y nodejsnpm install --global yarn
```