diff --git a/apps/cookiecloud/2023.01.20.16.39/.env.sample b/apps/cookiecloud/2023.01.20.16.39/.env.sample new file mode 100644 index 00000000..e97b8603 --- /dev/null +++ b/apps/cookiecloud/2023.01.20.16.39/.env.sample @@ -0,0 +1,4 @@ +CONTAINER_NAME="cookiecloud" +PANEL_APP_PORT_HTTP="40243" +DATA_PATH="./data" +API_ROOT="" diff --git a/apps/cookiecloud/2023.01.20.16.39/data.yml b/apps/cookiecloud/2023.01.20.16.39/data.yml new file mode 100644 index 00000000..44c92ab1 --- /dev/null +++ b/apps/cookiecloud/2023.01.20.16.39/data.yml @@ -0,0 +1,24 @@ +additionalProperties: + formFields: + - default: 40243 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text + - default: "" + edit: true + envKey: API_ROOT + labelEn: API Directory + labelZh: API 目录 + required: false + type: text \ No newline at end of file diff --git a/apps/cookiecloud/2023.01.20.16.39/docker-compose.yml b/apps/cookiecloud/2023.01.20.16.39/docker-compose.yml new file mode 100644 index 00000000..7cd2eeee --- /dev/null +++ b/apps/cookiecloud/2023.01.20.16.39/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3' +services: + cookiecloud: + image: easychen/cookiecloud:2023.01.20.16.39 + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:8088" + volumes: + - "${DATA_PATH}:/data/api/data" + environment: + - API_ROOT=${API_ROOT} + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/cookiecloud/README.md b/apps/cookiecloud/README.md new file mode 100644 index 00000000..72e8ffb2 --- /dev/null +++ b/apps/cookiecloud/README.md @@ -0,0 +1,15 @@ +# CookieCloud + +[中文](https://github.com/easychen/CookieCloud/blob/master/README_cn.md) | [English](https://github.com/easychen/CookieCloud/blob/master/README.md) + +![](https://github.com/easychen/CookieCloud/raw/master/extension/assets/icon.png) + +CookieCloud是一个和自架服务器同步Cookie的小工具,可以将浏览器的Cookie及Local storage同步到手机和云端,它内置端对端加密,可设定同步时间间隔。 + + +## 官方教程 + +![](images/20230121141854.png) + +1. 视频教程:[B站](https://www.bilibili.com/video/BV1fR4y1a7zb) | [Youtube](https://youtu.be/3oeSiGHXeQw) 求关注求订阅🥺 +1. 图文教程:[掘金](https://juejin.cn/post/7190963442017108027) diff --git a/apps/cookiecloud/data.yml b/apps/cookiecloud/data.yml new file mode 100644 index 00000000..0036df59 --- /dev/null +++ b/apps/cookiecloud/data.yml @@ -0,0 +1,19 @@ +name: CookieCloud +tags: + - 实用工具 +title: 一个和自架服务器同步 Cookie 的小工具 +description: 一个和自架服务器同步 Cookie 的小工具 +additionalProperties: + key: cookiecloud + name: CookieCloud + tags: + - Tool + shortDescZh: 一个和自架服务器同步 Cookie 的小工具 + shortDescEn: A small tool for syncing cookies with your self-hosted server + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://github.com/easychen/CookieCloud + github: https://github.com/easychen/CookieCloud + document: https://github.com/easychen/CookieCloud diff --git a/apps/cookiecloud/latest/.env.sample b/apps/cookiecloud/latest/.env.sample new file mode 100644 index 00000000..e97b8603 --- /dev/null +++ b/apps/cookiecloud/latest/.env.sample @@ -0,0 +1,4 @@ +CONTAINER_NAME="cookiecloud" +PANEL_APP_PORT_HTTP="40243" +DATA_PATH="./data" +API_ROOT="" diff --git a/apps/cookiecloud/latest/data.yml b/apps/cookiecloud/latest/data.yml new file mode 100644 index 00000000..44c92ab1 --- /dev/null +++ b/apps/cookiecloud/latest/data.yml @@ -0,0 +1,24 @@ +additionalProperties: + formFields: + - default: 40243 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text + - default: "" + edit: true + envKey: API_ROOT + labelEn: API Directory + labelZh: API 目录 + required: false + type: text \ No newline at end of file diff --git a/apps/cookiecloud/latest/docker-compose.yml b/apps/cookiecloud/latest/docker-compose.yml new file mode 100644 index 00000000..d960deb6 --- /dev/null +++ b/apps/cookiecloud/latest/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3' +services: + cookiecloud: + image: easychen/cookiecloud:latest + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:8088" + volumes: + - "${DATA_PATH}:/data/api/data" + environment: + - API_ROOT=${API_ROOT} + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/cookiecloud/logo.png b/apps/cookiecloud/logo.png new file mode 100644 index 00000000..12a10a6d Binary files /dev/null and b/apps/cookiecloud/logo.png differ