mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-03-26 00:21:15 +08:00
发布 Super Productivity
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
parent
4608c52df9
commit
e42a9094d3
1
.github/README.md
vendored
1
.github/README.md
vendored
@ -148,6 +148,7 @@
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/sun-panel/logo.png" width="22"/> | Sun Panel | https://doc.sun-panel.top/ | 一个服务器、NAS导航面板、Homepage、浏览器首页 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/super-productivity/logo.png" width="22"/> | Super Productivity | https://super-productivity.com/ | 一个高级TODO列表应用程序,具有时间框和时间跟踪功能 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/surveyking/logo.png" width="22"/> | 卷王 | https://surveyking.cn/ | 卷王问卷考试系统 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/synapse/logo.png" width="22"/> | Synapse | https://matrix.org/ | 用于安全、分散通信的开放网络 | Matrix |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/synapse/logo.png" width="22"/> | Synapse Admin | https://github.com/Awesome-Technologies/synapse-admin/ | 【管理面板】用于安全、分散通信的开放网络 | Matrix |
|
||||
|
@ -143,6 +143,7 @@
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/sun-panel/logo.png" width="22"/> | Sun Panel | https://doc.sun-panel.top/ | 一个服务器、NAS导航面板、Homepage、浏览器首页 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/super-productivity/logo.png" width="22"/> | Super Productivity | https://super-productivity.com/ | 一个高级TODO列表应用程序,具有时间框和时间跟踪功能 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/surveyking/logo.png" width="22"/> | 卷王 | https://surveyking.cn/ | 卷王问卷考试系统 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/synapse/logo.png" width="22"/> | Synapse | https://matrix.org/ | 用于安全、分散通信的开放网络 | Matrix |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/synapse/logo.png" width="22"/> | Synapse Admin | https://github.com/Awesome-Technologies/synapse-admin/ | 【管理面板】用于安全、分散通信的开放网络 | Matrix |
|
||||
|
13
apps/super-productivity/11.1.3/conf/webdav.yaml
Normal file
13
apps/super-productivity/11.1.3/conf/webdav.yaml
Normal file
@ -0,0 +1,13 @@
|
||||
address: 0.0.0.0
|
||||
port: 80
|
||||
|
||||
prefix: /
|
||||
permissions: CRUD
|
||||
|
||||
users:
|
||||
- username: alice
|
||||
password: alicepassword
|
||||
directory: /data/alice
|
||||
- username: bob
|
||||
password: bobpassword
|
||||
directory: /data/bob
|
17
apps/super-productivity/11.1.3/data.yml
Normal file
17
apps/super-productivity/11.1.3/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/super-productivity"
|
||||
edit: true
|
||||
envKey: SUPER_PRODUCTIVITY_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 8080
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
32
apps/super-productivity/11.1.3/docker-compose.yml
Normal file
32
apps/super-productivity/11.1.3/docker-compose.yml
Normal file
@ -0,0 +1,32 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
super-productivity:
|
||||
image: johannesjo/super-productivity:v11.1.3
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:80
|
||||
env_file:
|
||||
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
||||
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- WEBDAV_BACKEND=http://sp-webdav
|
||||
sp-webdav:
|
||||
image: hacdias/webdav:latest
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
env_file:
|
||||
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
||||
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||||
volumes:
|
||||
- ${SUPER_PRODUCTIVITY_ROOT_PATH}/config/webdav.yaml:/config.yml
|
||||
- ${SUPER_PRODUCTIVITY_ROOT_PATH}/data:/data
|
2
apps/super-productivity/11.1.3/envs/default.env
Normal file
2
apps/super-productivity/11.1.3/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
apps/super-productivity/11.1.3/envs/global.env
Normal file
2
apps/super-productivity/11.1.3/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
23
apps/super-productivity/11.1.3/scripts/init.sh
Normal file
23
apps/super-productivity/11.1.3/scripts/init.sh
Normal file
@ -0,0 +1,23 @@
|
||||
#!/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
|
||||
|
||||
mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH"
|
||||
mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/data"
|
||||
mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/config"
|
||||
|
||||
cp ./conf/webdav.yaml "$SUPER_PRODUCTIVITY_ROOT_PATH/config/webdav.yaml"
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
10
apps/super-productivity/11.1.3/scripts/uninstall.sh
Normal file
10
apps/super-productivity/11.1.3/scripts/uninstall.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
25
apps/super-productivity/11.1.3/scripts/upgrade.sh
Normal file
25
apps/super-productivity/11.1.3/scripts/upgrade.sh
Normal file
@ -0,0 +1,25 @@
|
||||
#!/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
|
||||
|
||||
mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH"
|
||||
mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/data"
|
||||
mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/config"
|
||||
|
||||
if [ ! -f "$SUPER_PRODUCTIVITY_ROOT_PATH/app/glance.yml" ]; then
|
||||
cp ./conf/webdav.yaml "$SUPER_PRODUCTIVITY_ROOT_PATH/config/webdav.yaml"
|
||||
fi
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
27
apps/super-productivity/README.md
Normal file
27
apps/super-productivity/README.md
Normal file
@ -0,0 +1,27 @@
|
||||
# Super Productivity
|
||||
|
||||
一个高级TODO列表应用程序,具有时间框和时间跟踪功能,该应用程序支持您的日历,JIRA,GITHUB等导入任务
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 简介
|
||||
|
||||
- **保持条理清晰和专注!** 使用子任务、项目和标签来计划和分类您的任务,并根据需要对它们进行颜色编码。
|
||||
- 使用**时间盒**和**跟踪您的时间**。轻松创建工时表和工作摘要,以便将其轻松导出到您公司的工时跟踪系统。
|
||||
- 帮助您**建立健康且高效的习惯**:
|
||||
- **休息提醒**会在该离开的时候提醒您。
|
||||
- **反拖延功能**在您确实需要时帮助您获得新的视角。
|
||||
- 需要更加专注?**番茄钟计时器**也总是触手可及。
|
||||
- **收集个人指标**以查看哪些工作例程需要调整。
|
||||
- 与**Jira**、**GitHub**、**GitLab**、**Gitea**和**OpenProject**集成。自动导入分配给您的任务,在本地详细规划,自动生成工作日志,并在有变化时立即得到通知。
|
||||
- 基本的[**CalDAV**](https://github.com/johannesjo/super-productivity/blob/master/docs/caldav.md)集成。
|
||||
- 使用**Dropbox**和**WebDAV**支持备份并在多个设备间同步您的数据。
|
||||
- 将上下文信息附加到任务和项目。创建**笔记**,附加**文件**或为链接、文件甚至命令创建**项目级别的书签**。
|
||||
- Super Productivity**尊重您的隐私**且**不会收集任何数据**,并且没有用户账户或注册要求。**由您决定数据存储的位置!**
|
||||
- 它是**免费**且**开源**的,并且永远都是。
|
||||
|
||||
---
|
||||
|
||||

|
14
apps/super-productivity/data.yml
Normal file
14
apps/super-productivity/data.yml
Normal file
@ -0,0 +1,14 @@
|
||||
additionalProperties:
|
||||
key: super-productivity
|
||||
name: Super Productivity
|
||||
tags:
|
||||
- WebSite
|
||||
- Local
|
||||
shortDescZh: 一个高级TODO列表应用程序,具有时间框和时间跟踪功能,该应用程序支持您的日历,JIRA,GITHUB等导入任务
|
||||
shortDescEn: An advanced TODO list application with time boxing and time tracking features that supports importing tasks from your calendar, JIRA, GITHUB, etc.
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://super-productivity.com/
|
||||
github: https://github.com/johannesjo/super-productivity/
|
||||
document: https://super-productivity.com/
|
BIN
apps/super-productivity/logo.png
Normal file
BIN
apps/super-productivity/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
Loading…
x
Reference in New Issue
Block a user