test/custom-admin-ui #3

Merged
orion merged 673 commits from test/custom-admin-ui into master 2026-06-05 17:20:58 +08:00
5 changed files with 5 additions and 5 deletions
Showing only changes of commit f613d9f69e - Show all commits
+1 -1
View File
@@ -162,4 +162,4 @@ AGENTS.md
dist/ dist/
# Frontend themes (built from GitHub during Docker build) # Frontend themes (built from GitHub during Docker build)
themes/ themes/
+1 -1
View File
@@ -66,4 +66,4 @@ ENV HOST="0.0.0.0" \
EXPOSE 12345 EXPOSE 12345
# 生产环境启动命令 # 生产环境启动命令
CMD ["sh", "-c", "exec uvicorn main:app --host \"$HOST\" --port \"$PORT\" --workers \"$WORKERS\" --log-level \"$LOG_LEVEL\" --proxy-headers --forwarded-allow-ips '*'"] CMD ["sh", "-c", "exec uvicorn main:app --host \"$HOST\" --port \"$PORT\" --workers \"$WORKERS\" --log-level \"$LOG_LEVEL\" --proxy-headers --forwarded-allow-ips '*'"]
+1 -1
View File
@@ -824,4 +824,4 @@ async def update_file(
count=1, count=1,
meta={"fields": sorted(update_data.keys())}, meta={"fields": sorted(update_data.keys())},
) )
return APIResponse(detail="更新成功") return APIResponse(detail="更新成功")
+1 -1
View File
@@ -107,4 +107,4 @@ upload_chunk_pydantic = pydantic_model_creator(UploadChunk, name="UploadChunk")
key_value_pydantic = pydantic_model_creator(KeyValue, name="KeyValue") key_value_pydantic = pydantic_model_creator(KeyValue, name="KeyValue")
presign_upload_session_pydantic = pydantic_model_creator( presign_upload_session_pydantic = pydantic_model_creator(
PresignUploadSession, name="PresignUploadSession" PresignUploadSession, name="PresignUploadSession"
) )
+1 -1
View File
@@ -104,4 +104,4 @@ class Settings:
return {**self.default_config, **self.user_config}.items() return {**self.default_config, **self.user_config}.items()
settings = Settings(DEFAULT_CONFIG) settings = Settings(DEFAULT_CONFIG)