码桶
发现社区成员的开源项目
版本历史
5 次提交提交详情
2b7a08e提交编号
2b7a08e7161bde02986f794c7e588d0f84127fbc提交作者crll<codebucket@localhost>
提交时间2026-07-28 17:15:09 +0800
更新说明更新 README.md
文件变更 1 个文件
文件新增删除
README.md+46-1文件差异 逐行查看本次提交的修改
README.md+46-1
@@ -1,2 +1,47 @@1
+# Meimiao - Social Content Sharing Platform1
-上午收拾收拾收拾收拾收拾2
+A social content-sharing platform built with ThinkPHP 8.x, similar to WeChat Moments. Supports posting articles, comments, likes, file uploads, music sharing, and more.3
+4
+## Tech Stack5
+6
+- PHP >= 8.07
+- ThinkPHP 8.x8
+- MySQL (utf8mb4)9
+- PHPMailer 6.x10
+11
+## Features12
+13
+- **Content Publishing** - Post articles with Markdown support, image/video uploads, tags, and location14
+- **Long-form Articles** - Rich text articles with table of contents, Mermaid diagrams, KaTeX math formulas15
+- **Comments & Likes** - Guest commenting, spam detection, comment audit workflow16
+- **Draft System** - Auto-save drafts with version history17
+- **File Upload** - Image/video/file upload with cloud storage (S3) support18
+- **Music Integration** - Share music from Netease, QQ, Kugou, Kuwo with server-side audio proxy19
+- **Content Moderation** - Article and comment audit pipelines20
+- **User System** - Registration, login, 2FA/TOTP, profile management, avatar/cover upload21
+- **Privacy Control** - Per-article visibility settings, site-wide password protection22
+- **Notifications** - Email notifications with customizable templates23
+- **RSS Feed** - Built-in RSS generation24
+- **Admin Panel** - Dashboard, site settings, user management, database backup/restore, config versioning25
+- **Security** - CSRF protection, rate limiting, external request guard26
+27
+## Project Structure28
+29
+```30
+app/31
+├── controller/32
+│ ├── api/ # API endpoints33
+│ ├── admin/ # Admin panel controllers34
+│ ├── Base.php # Base controller35
+│ ├── Home.php # Homepage36
+│ ├── View.php # Article detail37
+│ └── Edit.php # Article editor38
+├── model/ # Eloquent models39
+├── middleware/ # Request middleware40
+├── service/ # Business logic services41
+├── validate/ # Input validation42
+└── view/ # Templates (admin + frontend)43
+config/ # Configuration files44
+public/ # Web root (assets, uploads)45
+route/ # Route definitions46
+```