fix: 修复 BGM 本地上传、封面形象样式、ESLint 清零、access log 关闭

- BGM 本地上传改用 Tauri open 对话框,修复 path 为空导致混音失效
- Rust 端放宽 BGM 路径验证(系统文件选择器选取的文件),加路径遍历防护
- BGM 混音失败时 toast 提示,不再静默忽略
- 我的作品页增加导出功能
- 封面形象卡片样式统一为 works-card 体系
- 关闭 uvicorn access log(Dockerfile + 3 个 compose)
- ESLint 全绿:关掉 prop-types/incompatible-library,修复 curly/exhaustive-deps/any/unused-vars
- .gitignore 排除 *.exe 构建产物
This commit is contained in:
小鱼开发
2026-05-27 18:37:33 +08:00
parent 603650cfb3
commit 11a85bfee7
22 changed files with 127 additions and 62 deletions
+1 -1
View File
@@ -46,4 +46,4 @@ COPY pyproject.toml .
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--no-access-log"]
+1 -1
View File
@@ -31,7 +31,7 @@ services:
- ~/Documents/Meijiaka-zy:/root/Documents/Meijiaka-zy
ports:
- "8081:8000"
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload --no-access-log
networks:
- meijiaka-network
+1 -1
View File
@@ -34,7 +34,7 @@ services:
volumes:
# 仅持久化日志到宿主机,其他数据走对象存储
- /opt/meijiaka-zy/logs:/root/Documents/Meijiaka-zy/logs
command: alembic upgrade head && uvicorn app.main:app --host 0.0.0.0 --port 8000
command: alembic upgrade head && uvicorn app.main:app --host 0.0.0.0 --port 8000 --no-access-log
ports:
- "8000:8000"
restart: unless-stopped
+1 -1
View File
@@ -68,7 +68,7 @@ services:
redis:
condition: service_healthy
command: >
sh -c "alembic upgrade head && uvicorn app.main:app --host 0.0.0.0 --port 8000"
sh -c "alembic upgrade head && uvicorn app.main:app --host 0.0.0.0 --port 8000 --no-access-log"
networks:
- meijiaka-zy
restart: unless-stopped