feat: 添加日记系统

- 完整的 Django 后端 (diary app)
- 前端页面
- 部署脚本 (本地 + 云端)
- Nginx 配置
- 数据迁移工具
- 同步工具
This commit is contained in:
maoshen
2026-04-14 10:05:15 +00:00
parent 8e5ae8c7f1
commit 3dbf1ff6ce
31 changed files with 1457 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
"""
WSGI config for diary_system project.
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'diary_system.settings')
application = get_wsgi_application()