Go to file
2021-08-27 14:52:54 +08:00
.github Create FUNDING.yml (#40) 2020-11-26 11:38:03 +08:00
app_admin 新增信息位4 2021-07-29 15:37:11 +08:00
app_api 优化用户TokenAPI图片上传问题 2021-08-17 07:51:47 +08:00
app_doc 图片文件名精确到微秒,避免同一秒并发上传导致文件名称重复 2021-08-15 14:44:47 +08:00
captrue 更新自述文件 2020-09-14 20:55:06 +08:00
config 新增文集批量导出Markdown压缩包,新增在线表格支持 2021-04-11 19:13:00 +08:00
locale 添加英文和繁体中文翻译文件 2021-06-11 13:21:47 +08:00
media 修复获取下级文档的bug 2019-07-28 10:02:19 +08:00
MrDoc 更新版本号至0.6.9 2021-07-26 14:46:10 +08:00
static 更新站内搜索图片logo 2021-08-27 14:40:33 +08:00
template 优化首页底部样式 2021-08-27 14:48:07 +08:00
.gitignore 新增注册邀请码功能,并优化部分样式 2020-02-22 14:22:44 +08:00
CHANGES.md 优化文档浏览页面下载文档弹框样式 2021-08-20 16:48:30 +08:00
docker_mrdoc.sh Fix the problem of excessive document content and slow rebuild 2021-03-04 09:43:57 +08:00
docker-compose.yml update docker-compose.yml. 2021-05-18 14:33:22 +08:00
Dockerfile 修改镜像源为国内镜像源 2021-08-06 08:53:46 +00:00
LICENSE v0.5.4 详见更新日志 2020-06-21 21:44:10 +08:00
manage.py 第一次提交 2019-07-21 22:08:04 +08:00
README-zh.md 更新自述文件 2021-08-27 14:52:54 +08:00
README.md 新增QQ群2群信息 2021-08-21 09:52:54 +08:00
requirements.txt 更新依赖库文件 2021-06-04 21:17:09 +08:00

MrDoc - Writing documents, Gathering ideas

Personal and small team notes, documents, knowledge management privatization deployment scheme

中文介绍 | English Description

Home | Example Site | QQ Group

Installation Manual | User Manual | Document Example

Source codeGitee | GitHub

Introduce

Mrdoc is an online document system developed based on python. It is suitable for individuals and small teams to manage documents, knowledge and notes. It is committed to become a private online document deployment solution for the whole platform (web, desktop, mobile).

Current Platform

Example Site

http://mrdoc.zmister.com

username:test1 password:123456

Donate

Donate a can of Coffee to the author to speed up the development.

Ko-Fi | PayPal

Feature

  • Site Manage & User Manage

    • Support user registration, login, management, administrator and other basic user functions;
    • Support site configuration registration invitation code, advertising code, statistics code, email retrieval password, site wide close registration, site wide forced login and other management functions;
    • It supports the configuration of the permission of the Project, and provides four permission modes: public, private, visible to the specified user and visible to the access code;
  • Document System

    • Document writing and reading are based on the Project, with five modules, namely project, document, document template, image and attachment;
    • The markdown editor based on editormd and vditor is used to optimize and extend, and the markdown syntax is used for document writing, and image management and uploading, table pasting, mind mapping, flow chart drawing and sequence diagram drawing are supported;
    • Two column document reading page, three-level directory level display, document reading font scaling, font type switching, page social sharing, mobile reading optimization, text collection export PDF, ePub file;
    • Support the account based API interface, which can use the account token to get the corpus, upload pictures and create documents through the 'API';
    • Supports the project collaboration function. A project can have one Creator and multiple collaborators, and can flexibly select collaboration permissions;
    • It supports the function of document historical version to view and compare the differences between the historical version and the existing version, and restore a historical version to the current version;

Update Record : CHANGES.md

Simple Installation Tutorial

1. install dependent modules

pip install -r requirements.txt

2. Initialize database

After installing the required third-party library and configuring the database information, we need to initialize the database.

Open the command line interface under the project path and run the following command to generate the database migration:

python manage.py makemigrations 

Run the following command to perform database migration:

python manage.py migrate

After execution, the database is initialized.

3. Create Super User

After initializing the database, you need to create an administrator account to manage the whole mrdoc. Open the command line terminal in the project path and run the following command:

python manage.py createsuperuser

Follow the prompts to enter the user name, email address and password.

4、Test Running

After completing the above steps, you can run and use mrdoc.

In the test environment, you can use the server provided by Django to run mrdoc. The command is:

python manage.py runserver

Feedback

1. Commit Issue

Submit questions on the following pages:

2. Join the mrdoc communication group

Join the mrdoc communication Tencent QQ group Group number:

  • 735507293(Full)
  • 849206042

3. Contact author

WeChat Subscription : zmister2016

Dependent

Thanks for the development based on the following projects

  • Python
  • Django
  • Jquery
  • LayUI
  • PearAdminLayui
  • Editor.md
  • Marked
  • CodeMirror
  • Echarts
  • Viewer.js
  • Sortable.js
  • Vditor
  • TinyMCE

License

GPL-3.0