Files
disknext/.gitignore
于小丘 ccadfe57cd
All checks were successful
Test / test (push) Successful in 1m45s
feat: migrate ORM base to sqlmodel-ext, add file viewers and WOPI integration
- Migrate SQLModel base classes, mixins, and database management to
  external sqlmodel-ext package; remove sqlmodels/base/, sqlmodels/mixin/,
  and sqlmodels/database.py
- Add file viewer/editor system with WOPI protocol support for
  collaborative editing (OnlyOffice, Collabora)
- Add enterprise edition license verification module (ee/)
- Add Dockerfile multi-stage build with Cython compilation support
- Add new dependencies: sqlmodel-ext, cryptography, whatthepatch

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 14:23:17 +08:00

82 lines
740 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
eggs/
.eggs/
# 虚拟环境
.venv/
.env/
venv/
env/
# 测试和覆盖率
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
# IDE
.vscode/
.idea/
*.code-workspace
.VSCodeCounter/
*.swp
*.swo
*~
# 数据库
*.db
*.sqlite
*.sqlite3
# 环境变量
.env
.env.local
.env.*.local
# 日志
*.log
logs/
# 系统文件
.DS_Store
Thumbs.db
nul
# Node (如果有前端)
node_modules/
# 其他
*.bak
*.tmp
*.temp
# 文件
data/
# JB 的运行配置(换设备用不了)
.run/
.xml
# 前端构建产物Docker 构建时复制)
statics/
# Cython 编译产物
*.c
# 许可证密钥(保密)
license_private.pem
license.key