add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,28 @@
# http-server-upload
> 零配置的命令行HTTP服务器提供轻量级接口用于上传文件。
> 更多信息:<https://github.com/crycode-de/http-server-upload>。
- 在默认端口启动HTTP服务器以便将文件上传到当前目录
`http-server-upload`
- 启动HTTP服务器并指定允许的最大上传文件大小默认为200 MiB
`MAX_FILE_SIZE={{size_in_megabytes}} http-server-upload`
- 在特定端口启动HTTP服务器以便将文件上传到当前目录
`PORT={{port}} http-server-upload`
- 启动HTTP服务器将上传的文件存储在特定目录中
`UPLOAD_DIR={{path/to/directory}} http-server-upload`
- 启动HTTP服务器使用特定目录临时存储上传过程中的文件
`UPLOAD_TMP_DIR={{path/to/directory}} http-server-upload`
- 启动HTTP服务器接受在HTTP POST中带有特定令牌字段的上传
`TOKEN={{secret}} http-server-upload`