mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 21:02:18 +08:00
feat:添加syncclipboard-server到列表
This commit is contained in:
parent
a348377d08
commit
85c25a6f16
3
apps/syncclipboard-server/2.7.5/.env.sample
Normal file
3
apps/syncclipboard-server/2.7.5/.env.sample
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER_NAME="syncclipboard-server"
|
||||
PANEL_APP_PORT_HTTP="40229"
|
||||
CONFIG_FILE_PATH="./data/appsettings.json"
|
17
apps/syncclipboard-server/2.7.5/data.yml
Normal file
17
apps/syncclipboard-server/2.7.5/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40229
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/appsettings.json
|
||||
disabled: true
|
||||
envKey: CONFIG_FILE_PATH
|
||||
labelEn: Configuration file path
|
||||
labelZh: 配置文件路径
|
||||
required: true
|
||||
type: text
|
20
apps/syncclipboard-server/2.7.5/data/appsettings.json
Normal file
20
apps/syncclipboard-server/2.7.5/data/appsettings.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"Kestrel": {
|
||||
"Endpoints": {
|
||||
"Http": {
|
||||
"Url": "http://0.0.0.0:5033"
|
||||
}
|
||||
}
|
||||
},
|
||||
"AppSettings": {
|
||||
"UserName": "admin",
|
||||
"Password": "admin"
|
||||
}
|
||||
}
|
18
apps/syncclipboard-server/2.7.5/docker-compose.yml
Normal file
18
apps/syncclipboard-server/2.7.5/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
||||
version: '3'
|
||||
services:
|
||||
syncclipboard-server:
|
||||
image: jericx/syncclipboard-server:v2.7.5
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:5033"
|
||||
volumes:
|
||||
- ${CONFIG_FILE_PATH}:/app/appsettings.json
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
18
apps/syncclipboard-server/README.md
Normal file
18
apps/syncclipboard-server/README.md
Normal file
@ -0,0 +1,18 @@
|
||||
# SyncClipboard
|
||||
[](https://github.com/Jeric-X/SyncClipboard/actions?query=branch%3Amaster)
|
||||
|
||||
中文 | [English](https://github.com/Jeric-X/SyncClipboard/blob/master/docs/README_EN.md)
|
||||
|
||||
|
||||
## 注意
|
||||
|
||||
- 默认用户名是`admin`,密码是`admin`,可以通过应用目录下的配置文件进行修改。
|
||||
|
||||
|
||||
## 功能
|
||||
|
||||
- 剪贴板同步,支持文字、图片和文件。服务器/客户端架构,可以使用客户端内置服务器、独立部署服务器,也可以使用支持WebDAV的网盘作为服务器
|
||||
- 优化图片类型的剪贴板,功能有:
|
||||
- 从任意位置复制图片时,可以直接向文件系统粘贴图片文件,反之亦然
|
||||
- 从浏览器复制图片后,后台下载原图到本地,解决无法从浏览器拷贝动态图的问题(大多网站有认证,适用范围有限,支持bilibili动态图片)
|
||||
- 从文件系统复制较新格式类型的图片文件时(webp/heic等),在剪贴板内储存gif或jpg格式,用于直接向支持图片的文本框粘贴图片
|
19
apps/syncclipboard-server/data.yml
Normal file
19
apps/syncclipboard-server/data.yml
Normal file
@ -0,0 +1,19 @@
|
||||
name: SyncClipboard-Server
|
||||
tags:
|
||||
- 实用工具
|
||||
title: 跨平台剪贴板同步方案 (服务端)
|
||||
description: 跨平台剪贴板同步方案 (服务端)
|
||||
additionalProperties:
|
||||
key: syncclipboard-server
|
||||
name: SyncClipboard-Server
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 跨平台剪贴板同步方案 (服务端)
|
||||
shortDescEn: Cross-Platform Cipboard Syncing Solution (Server)
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://github.com/Jeric-X/SyncClipboard
|
||||
github: https://github.com/Jeric-X/SyncClipboard
|
||||
document: https://github.com/Jeric-X/SyncClipboard
|
3
apps/syncclipboard-server/latest/.env.sample
Normal file
3
apps/syncclipboard-server/latest/.env.sample
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER_NAME="syncclipboard-server"
|
||||
PANEL_APP_PORT_HTTP="40229"
|
||||
CONFIG_FILE_PATH="./data/appsettings.json"
|
17
apps/syncclipboard-server/latest/data.yml
Normal file
17
apps/syncclipboard-server/latest/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40229
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/appsettings.json
|
||||
disabled: true
|
||||
envKey: CONFIG_FILE_PATH
|
||||
labelEn: Configuration file path
|
||||
labelZh: 配置文件路径
|
||||
required: true
|
||||
type: text
|
20
apps/syncclipboard-server/latest/data/appsettings.json
Normal file
20
apps/syncclipboard-server/latest/data/appsettings.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"Kestrel": {
|
||||
"Endpoints": {
|
||||
"Http": {
|
||||
"Url": "http://0.0.0.0:5033"
|
||||
}
|
||||
}
|
||||
},
|
||||
"AppSettings": {
|
||||
"UserName": "admin",
|
||||
"Password": "admin"
|
||||
}
|
||||
}
|
18
apps/syncclipboard-server/latest/docker-compose.yml
Normal file
18
apps/syncclipboard-server/latest/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
||||
version: '3'
|
||||
services:
|
||||
syncclipboard-server:
|
||||
image: jericx/syncclipboard-server:latest
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:5033"
|
||||
volumes:
|
||||
- ${CONFIG_FILE_PATH}:/app/appsettings.json
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
BIN
apps/syncclipboard-server/logo.png
Normal file
BIN
apps/syncclipboard-server/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
Loading…
Reference in New Issue
Block a user