Cause#
Recently, while using Dify to study workflows, I encountered a problem when trying to modify some workflows created by experts according to my own needs. The large model usually outputs content in Markdown format. For some information-gathering processes (such as news updates), it is possible to send the content via email, but I don't want to open the email application when I'm outside. I want to read Markdown messages directly through the browser, and I want to deploy this service myself without relying on third parties, so I have to handle it myself.
Clear Requirements#
My small application should include the following capabilities:
- Ability to upload Markdown messages via API
- Grouping (folder) functionality
- Ability to delete and move files, as it is only for reading and not for editing
- New message notifications, which can be implemented using the Bark service
Code Development#
I am not a full-stack engineer, so I can only rely on AI to assist me. Due to working at a large company, I have some benefits using Qwen Coder, so I used Qwen Coder to help me complete the entire initial development.
Dify Workflow#

It is mainly used to obtain messages from some major consulting platforms and then send them to mobile devices via email, push notifications, etc.
DMark Display#
Frontend

Message Push

Future Plans#
Add authentication; I don't think it's necessary for personal use.
Update as needed; I'll add new requirements as they arise.