29 Star 207 Fork 74

doramart / Pandora

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
contribute
Sync branch
Cancel
Notice: Creating folder will generate an empty file .keep, because not support in Git
Loading...
README
MIT

Pandora 2.1.8

更新内容:

  • 服务端代码加入 eslint 校验,并通过 Prettier 格式化(使用 vscode 需要安装对应的插件)
  • 修复用户中心分页样式不正确的问题
  • 修复使用 ueditor 编辑时,通过剪切板粘贴图片不能上传到 cdn 的问题
  • 添加了 markdown 编辑器
  • 后台管理添加了选项卡切换
  • 修复了广告管理中,添加轮播图广告报错的问题
  • 删除了多余的适配文件,不再兼容低版本 IE
  • 后台管理添加了 io 通知,关键操作会通知到管理员
  • 修复找回密码链接跳转不正常的问题
  • 为了真正的拥抱开源,从这个版本开始,Pandora 默认使用 Mariadb 数据库,如果您使用的是 mysql,可能需要对数据库文件进行适当处理

DoraCMS

Pandora CMS 视频简介

Pandora CMS 视频简介

说明

Pandora CMS 使用的技术栈:

1、nodejs 12 + eggjs 2
2、vue-cli
3、mariadb 10 

文档: Pandora CMS 开发文档
API: Pandora CMS API文档
演示地址: 前端开发俱乐部

后台登录: https://sql.html-js.cn/dr-admin
测试账号:doracms/123456

DoraCMS 安装:

创建项目需要的数据库,登录 MySQL 创建数据库

create database doracms;

查看数据库是否创建成功,看到有 doracms 的数据库,就创建成功了

show databases;

登录数据库,使用数据库,

use doracms;

导入SQL文件,生成数据库表,SQL 文件在 DoraCMS 的 databak 目录,

目录改成,自己的 doracms.sql 文件目录

source D:\ProjectList\NodeJS\DoraCMS\databak\doracms.sql

代码根目录安装依赖

npm i --registry=https://registry.npm.taobao.org

修改配置文件

/app/config/config.local.js

// 配置 mariadb 信息
sequelize: {
    dialect: 'mariadb',
    host: '127.0.0.1', // 本地
    port: 3306,
    database: 'doracms', //mariadb database dir
    username: "root",
    password: "123456",
    delegate: 'model'
},

运行项目

npm run dev

前台访问

http://127.0.0.1:10003

后台登录

http://127.0.0.1:10003/dr-admin
登录账号doramart/123456    doracms/123456

mongodb 版本

DoraCMS mongodb 源码
DoraCMS mongodb 版本预览

技术交流群

捐赠

如果你发现DoraCMS很有用,可以请生哥喝杯咖啡(⊙o⊙)哦

LICENSE

MIT

MIT License Copyright (c) 2020 doramart Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Pandora 是基于 Nodejs+eggjs+mariadb 编写的一套内容管理系统 expand collapse
NodeJS and 5 more languages
MIT
Cancel

Releases

No release

Contributors

All

Activities

Load More
can not load any more
NodeJS
1
https://gitee.com/doramart/Pandora.git
git@gitee.com:doramart/Pandora.git
doramart
Pandora
Pandora
2.1.8

Search