Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2024-11-28 09:57:19 +00:00
parent 373a561487
commit 275d5be658
1857 changed files with 56700 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# CookieCloud
CookieCloud 是一个用于将 cookie 与您的自托管服务器同步的小工具,允许您将浏览器 cookie
和本地存储同步到您的手机和云端。它具有内置的端到端加密功能,并允许您设置同步间隔。
![CookieCloud](https://file.lifebus.top/imgs/cookie_cloud_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 浏览器插件
+ [Edge Store](https://microsoftedge.microsoft.com/addons/detail/cookiecloud/bffenpfpjikaeocaihdonmgnjjdpjkeo)
+ [Chrome Store](https://chrome.google.com/webstore/detail/cookiecloud/ffjiejobkoibkjlhjnlgmcnnigeelbdl)
## FAQ 常问问题
+ 目前,同步只是单向的,这意味着一个浏览器可以上传,而另一个浏览器可以下载。
+ 该浏览器扩展正式支持 Chrome 和 Edge。其他基于 Chromium 的浏览器可能可以工作,但尚未经过测试。使用源代码 cd extension &&
pnpm build --target=firefox-mv2 自行编译Firefox版本。
+ 请注意,Firefox 的 cookie 格式与 Chrome 的不同,并且它们不能混合。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
+16
View File
@@ -0,0 +1,16 @@
additionalProperties:
key: cookie-cloud
name: CookieCloud
tags:
- WebSite
- Tool
- Runtime
- Local
shortDescZh: 自架服务器同步Cookie的小工具
shortDescEn: A small tool to synchronize cookies on self-built servers
type: website
crossVersionUpdate: true
limit: 0
website: https://github.com/easychen/CookieCloud/
github: https://github.com/easychen/CookieCloud/
document: https://github.com/easychen/CookieCloud/
+9
View File
@@ -0,0 +1,9 @@
# 端口 [必填]
PANEL_APP_PORT_HTTP=8088
# 数据持久化路径 [必填]
COOKIECLOUD_ROOT_PATH=/home/cookie-cloud
# 网站路径 [必填]
API_ROOT=/
+24
View File
@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: 8088
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "/home/cookie-cloud"
edit: true
envKey: COOKIECLOUD_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: "/"
edit: true
envKey: API_ROOT
labelZh: 网站路径
labelEn: Web path
required: true
type: text
@@ -0,0 +1,19 @@
networks:
1panel-network:
external: true
services:
cookie-cloud:
container_name: cookie-cloud
env_file:
- ./envs/global.env
- .env
image: easychen/cookiecloud:latest
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8088
restart: always
volumes:
- ${COOKIECLOUD_ROOT_PATH}/data:/data/api/data
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB