DoraCMS 項(xiàng)目目錄結(jié)構(gòu)如下
oas-system
├── README.md
├── app
│ ├── assets (靜態(tài)資源源文件)
│ ├── bootstrap (模板渲染處理)
│ ├── controller (控制器)
│ ├── extend (程序擴(kuò)展)
│ ├── middleware (中間件)
│ ├── model (mongo數(shù)據(jù)模型)
│ ├── public (靜態(tài)資源目錄)
│ ├── router (路由))
│ ├── router.js
│ ├── schedule (定時(shí)任務(wù))
│ ├── service (數(shù)據(jù)處理)
│ ├── utils (公共方法)
│ ├── validate (數(shù)據(jù)校驗(yàn))
│ └── view (模板)
├── app.js
├── appveyor.yml
├── backstage (后臺頁面集合)
│ ├── adminGroup (角色管理)
│ ├── adminResource (資源管理)
│ ├── adminUser (管理員管理)
│ ├── ads (廣告管理)
│ ├── announce (系統(tǒng)公告管理)
│ ├── backUpData (數(shù)據(jù)備份)
│ ├── build (整體打包發(fā)布腳本)
│ ├── content (文檔管理)
│ ├── contentCategory (文檔類別管理)
│ ├── contentMessage (文檔留言管理)
│ ├── contentTags (文檔標(biāo)簽管理)
│ ├── contentTemp (模板編輯)
│ ├── dashboard (后臺首頁))
│ ├── dist (后臺頁面打包集合)
│ ├── helpCenter (幫助中心)
│ ├── navbar (右側(cè)菜單)
│ ├── plugin (插件管理)
│ ├── regUser (會員管理)
│ ├── systemConfig (系統(tǒng)配置)
│ ├── systemNotify (系統(tǒng)通知)
│ ├── systemOptionLog (操作日志)
│ ├── templateConfig (模板配置)
│ ├── uploadFile (文件上傳)
│ └── versionManage (APP版本管理)
├── build
│ │
│ └── restore.js (數(shù)據(jù)恢復(fù))
├── config
│ ├── config.default.js (系統(tǒng)默認(rèn)配置)
│ ├── config.local.js (開發(fā)環(huán)境配置)
│ ├── config.prod.js (生產(chǎn)環(huán)境配置)
│ ├── locale (國際化文件夾)
│ └── plugin.js (插件配置)
├── data
│ │
│ └── doracms2.zip (數(shù)據(jù)恢復(fù))
│
├── index.js
├── lib
│ ├── framework.js
│ └── plugin
├── logs (日志目錄)
│
├── package.json
├── robots.txt (seo robots)
├── run
│
└test
├── fixtures
└── framework.test.js
更多建議: