一个基于 Cloudflare Workers + D1 + R2 的论坛应用。所有人可以随意发帖,内容不限
- 前端: React + TypeScript + Vite + Material UI v7
- 后端: Cloudflare Workers + D1 (SQLite)
- 存储: Cloudflare R2 对象存储
WFLAwall/
├── frontend/ # 前端应用
│ ├── src/
│ │ ├── App.tsx # 主组件
│ │ ├── App.css # 样式
│ │ └── theme.ts # MUI 主题配置
│ └── wrangler.toml
├── backend/ # 后端应用
│ └── src/index.ts # Workers 入口
└── wrangler.toml # 根目录配置
cd frontend
npm install
npm run dev # 开发模式
npm run build # 构建cd backend
npx wrangler deploy- 匿名发帖/评论
- 图片上传
- 点赞/踩
- 用户搜索
- 帖子搜索
- 管理员功能 (封禁、权限管理)
使用 Cloudflare D1 创建:
wrangler d1 execute wfla-db --local --command "$(cat schema.sql)"